Storyboard disabled my view

For some reason, my storyboard turned off my view. I can move all the elements so I can't see them.

Any suggestions to fix this?

enter image description here

thank

+3


source to share


2 answers


You have changed the size class. The gray dots shown in the navigator are grayed out because they are defined under a different size class.



Change to Any-Any and it will come back. Unless try other size classes.

+2


source


In my case, there was a mask exception defined in the Storyboard file:

<variation key="default">
    <mask key="subviews">
        <exclude reference="QjJ-Nd-P4H"/>
    </mask>
</variation>

      



Open the storyboard file as source (right click on the storyboard file, Open As ... -> Source Code) and search for any exceptions. Remove them in XML and reopen the storyboard in Interface Builder.

0


source







All Articles