Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I started the development of a new app on the iPhone 5 and now I also have to add support for 3.5 inch screens. As you know, there is more space for content on a 4 screen than on a 3.5 screen.

When I run the app on a 3.5 screen, the whole layout is messed up. Is it possible to use the layout normally on a 4 inch screen, but place the layout within a scroll view when run on a 3.5 screen?

My idea was to scroll the page rather than completely redesigning it. How can I achieve that?

(or maybe it is somehow possible to design a layout for the 3.5 screen and the 4 screen seperately)?

share|improve this question
Have you set up your struts or autolayout correctly? – Jonathan Grynspan Feb 7 at 19:56
No probably not.. – doonot Feb 7 at 19:59
1  
Then you should do that first. – Jonathan Grynspan Feb 7 at 20:04
Well I am using autolayout and constraints, but that doesnt change the fact, that I am able to define both layouts for both screen sizes. – doonot Feb 7 at 20:34

1 Answer

It is totally possible to design completely different layouts for 3.5 and 4 inch screens. You would just need to add this :

#define IS_IPHONE_5 (((double)[[UIScreen mainScreen] bounds].size.height) == ((double)568))

And build separate cases, using if (IS_IPHONE_5) {do this...} else {do that...}

BUT

This should be done only as a last resort, because it would require a lot of manual/extra coding. You should ideally create the view in such a way that it automatically adjusts itself for both the screens. And you can do that in 2 ways :

1)With Auto-Layout i.e applying constraints on and between each view element. (Personally I don't like it a lot)

2)Without AutoLayout, by applying auto-resizing masks on each of the view elements. (and checking by toggling the form factor button in storyboard)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.