Reputation: 1048
I have to support both Landscape and Potrait for Iphone and Landscape for Ipad respectively, Under Size classes is it a necessary that i have to start with AnyAny first for basic layout and then proceed with compactwidth & RegularHeight for support Potrait orientation for Iphone
Upvotes: 0
Views: 60
Reputation: 7948
It doesn't really matter as for each size class you can set installed (as if, active constraint that will be fulfilled) constraints and which will be uninstalled ( disabled ). Just make sure that you don't have overlapping constraints and you are good to go. For more reference there is a great article: http://www.raywenderlich.com/50319/beginning-auto-layout-tutorial-in-ios-7-part-2
Also they have a book about iOS 8 and there you can find even more information.
Upvotes: 1