Xcode: Failed to update auto layout status

Once in a while we come across a situation where our storyboard or xib does not show the UI but only the frames with blue lines marking the views. This issue is caused due to Xcode not being able to read autolayouts and are more frequent on slow macs. The problem can be solved in … Read more

What does GM Seed mean in Xcode GM Seed

Apple just launched Xcode 11 GM seed and had many people confused what GM Seed means. GM stands for gold master. It is finalized firmware released before the public release. It is different from beta versions as it can be used to build and upload apps on Appstore DOWNLOAD XCODE XIP?DMG FROM>>>

String length in Swift

To get the string length in swift we have two options depending on swift version Swift 3 yourString.characters.count //EXAMPLE if yourString.characters.count == 0{ //do something } 2. Swift 4 yourString.count //EXAMPLE if yourString.count == 0{ //do something }