I have a problem – I hid some buttons that I am using in the code(hide/reveal), but I need to add some features to my view and I am unable to locate them. I mean, sure I can click them and will probably find them, but is there a way how to turn on “show hidden views” in XCode(4.4), or anything like that?
Share
Ok there are two ways to do this:
The sane (safe) way (I know you wont like it but I have to mention it)
Just select all your views and uncheck the hidden checkbox in the view inspector
The adventurous way (Be careful !)
If you really have a lot of views hidden and you like to unhide all of them you can just open your Storyboard into a text editor and do a mass replace of
hidden="YES"withhidden="NO"(you can see that it’s just an XML with your view graph actually)