When working with Storyboard files in Interface Builder on Xcode 6.1, Apple recommends designing for the Any/Any size class. When finished, different size classes sometimes report warnings:
Misplaced View - Frame for "Some Button" will be different at run time.
You can fix by doing the following:
- Change to one of the nine Size Classes.
- Select a Scene.
Editor -> Resolve Auto Layout Issues -> (All Views) Update Frames
- Repeat steps #2 and #3 until all Scene's in a Size Class have their frames updated.
- Go to step #1 and repeat until all Size Classes have been updated.
This is pretty cumbersome if you have, say, 20 different Scene's in a Storyboard (20 x 9 size classes = 180 manual frame updates).
Is there a way to tell Xcode 6.1 to "Update Frames" for every Scene, in every Size Class, in one command?