Reputation: 263
I have been recently building an application, and although I love how the iPhone 5 has a bunch more space, I hate their autoresize in storyboard (regardless of unchecking autoresize). Is there a way to turn off autoresize somewhere for the entire project?
Upvotes: 0
Views: 89
Reputation: 2344
1: Head into storyboard
2: Click any view controller you might have
3: Click on file inspector
4: Turn off autolayout there
Then you can use the good old struts and springs again, but it can cause you a bit of trouble when making layouts for the different formats.
Explanation on what Autolayout is and why you should probably use it: http://www.raywenderlich.com/20881/beginning-auto-layout-part-1-of-2
Upvotes: 3