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

I have created an app for iPhone 5 and it is running well.

When the app is run on an iPhone 4 or earlier device, the layout is wrong. Textfields and labels are not in the right position.

My client wants his app to run on all iPhone devices. How can I correct the layout issues?

share|improve this question
Please make a little more effort with the punctuation and grammar in your questions. It doesn't matter if English isn't your first language, sentences and full stops are pretty much universal. Questions written as poorly as this one tend to attract downvotes instead of answers. – jrturton Feb 21 at 7:41
you should post some code examples of what's not working the same if you want somebody to help you.. – Ivan Ferić Feb 21 at 7:52

closed as not a real question by zoul, burning_LEGION, nwinkler, Sjoerd, Łukasz Niemier Feb 21 at 11:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

You'll be aware that the iPhone 5 has a differently sized screen to the earlier iPhones. You can design for this by switching the screen size in the storyboard or xib files between the two sizes (this is the icon in the bottom right which looks like a small phone with arrows at the top and bottom).

You can also switch between sizes in the simulator, using the hardware menu, which may have helped you detect this earlier.

In the simplest case, autoresizing masks or layout constraints appropriately should solve most of your problems. If you've built all of your views in code and used fixed frames for everything assuming an iPhone 5 screen size then you have bigger problems.

share|improve this answer

some solutions: 1) make all the frames dynamic (in case you have not used xibs), so that your height/y is always something with [[UIScreen mainScreen] bounds] 2) make two xibs 3) add UIScrollView in each screen

share|improve this answer

Most of the time all you need to do is set setAnchor and Autoresizing mask properly. To plot View dynamically like in scrollView. You must get scrollView bound (not device bounds) and plot according to it. On say change or orientation since you must have set autoresize mask properly it scrollview should resize it self properly. But for it inner content you can override viewWillLayoutSubviews method of view controller. Their you will require to reposition scrollview sub view according to scrollview new bounds

share|improve this answer

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