Reputation: 438
I am working on a iPhone app which required to be run on all iPhone sizes i.e. 4s,5,6 and 6 plus in ios 8 and above. What will be the simplest way to adjust UI to support all screen sizes. I am using Xib.
Thanks.
Upvotes: 3
Views: 260
Reputation: 2298
Autoresizing
is simplest way to adjust UI to support all screen sizes in portrait mode as @Nishant explained instead of using constraints
in AutoLayout
. But if you want adjust same UI in landscape and portrait both then use AutoLayout
& Size Classes
as @ezCoding explained.
Upvotes: 3