I'm updating an old app to the new iPhone sizes and I ran into a problem. Auto-layout broke several pieces of an old storyboard.
No problem, just go in and uncheck auto-layout. Run again (3.5in screen) and works perfectly again, then run in 4in screen, nothing re-sizes. Spend next couple minutes checking and unchecking auto-layout box and running it on various screens. This is clearly the problem.
Turn off auto-layout, select the top view in your view controller, open up the size inspector inspector and take a look at the Autosizing box. The inner arrows which let the view re-size are grayed out. You can't select them. From looking in example view, it's obvious the view won't re-size. Since it won't re-size, it won't work properly on a 3.5in and 4in screen.
Anyone see a (fairly simple) way around this limitation?
I really have no desire to update storyboards which don't need UI updates to work properly with auto-layout, but the other option seems to be writing testing code and throwing it into all my view controllers, which would probably be as much effort as fixing all my storyboards to work with auto-layout.