Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

hide elements in xcode storyboard

Is there a way to hide elements in storyboard interface? What I am talking about is like in Photoshop how you can hide layers while working. I ask because I have some stacked items and it would be nice to not see everything at once while working sometimes.

like image 676
Packy Avatar asked Aug 08 '14 23:08

Packy


People also ask

How do I hide my status bar on storyboard?

step 1 : in your frameWork-Info. plst' file, add the key 'View controller-based status bar appearance' and set it to 'NO'.


2 Answers

While selecting your view/object, in the right panel click the 'Installed' button. Make you to reenable it when your done!

enter image description here

          ^ 

Make sure to select one of the views:

enter image description here

like image 192
ktzhang Avatar answered Sep 20 '22 19:09

ktzhang


I also cannot see the 'installed' checkbox (Xcode 6.4), but here is my workaround to temporarily hide a layer.

Select one of your views to 'hide' and in Utilities Pane, select Size inspector and set your X (horizontal) value to 1000 - which will slide the view off the screen, allowing you access to layers below. Don't forget to reset X value when done.

like image 24
AMW Avatar answered Sep 21 '22 19:09

AMW