Xcode 7.1 crash if you disable Auto Layout on tvOS storyboard. Any idea how to fix this?
Asked
Active
Viewed 151 times
1 Answers
0
I worked around this by setting the flag manually in the XIB source. You can do this directly in XCode:
- Right-click the .xib file and choose Open As > Source Code
- Search for "autolayout"
- Change the autolayout YES setting to NO

John Stephen
- 7,625
- 2
- 31
- 45
-
That sucks. It worked out for me fortunately and only changing the setting in the UI made mine crash. – John Stephen Nov 26 '15 at 18:56