Tomek
Tomek

Reputation: 642

Preparing an app to run on both 3.5'' and 4'' without autolayout

I'm writing an app which has to have vertical sliders and is supposed to run on both iPhone4 and iPhone5. I had to turn off autolayout because otherwise vertical sliders wouldn't display properly.

Is there a way to create a layout which will look good on both 3.5'' and 4'' screen without autolayout?

Upvotes: 0

Views: 67

Answers (2)

Abhi Beckert
Abhi Beckert

Reputation: 33379

When you disable auto-layout, the view system switches to using "auto-resize masks", which is auto-layout's predecessor.

You'll have to either learn how auto-layout works or how auto-resize masks work. There is plenty of documentation for both systems.

Upvotes: 1

Hannes
Hannes

Reputation: 3772

Of course it's possible to do that. You can either code your UI by yourself and use [UIScreen mainScreen].bounds.size as your screen size reference or work with Storyboards and use the AutoSizing (not AutoLayout) guides.

Upvotes: 0

Related Questions