Reputation: 2240
I am using the same version of XCode as another developer I am working with but when I open the project on my machine the interface objects are not visible in the storyboard and their names are semi-transparent. I’ve Googled around but I cannot seem to figure out why this might be happening.
Any ideas would be much appreciated!
Upvotes: 8
Views: 2966
Reputation: 22731
It's because the views have been set for a different size class in Interface Builder, and not Any & Any
, which you have currently selected.
Just change the size class in the interface builder appropriately and the views will be back! :)
I encountered the same issue, read more here: Why don't my views show up in Storyboards and are greyed out in the left pane?
Upvotes: 4