Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can i handle Layout in IOS5 as well as IOS6.Previously i have developed my application in IOS5.Now i am facing problem of layout (3.5 and 4 inch). i have done ot of of r & d and found that we can solve it using constraints but i don't understand concept of constraints. Can any one help me to do so without using two xibs? i found this link

How do I move ahead, but at the same time provide backwards compatibility? Any suggestions would be great.

share|improve this question
check this stackoverflow.com/questions/12411980/… – iCrazyDev Oct 5 '12 at 6:38
@iCrazyDev for that i have to create two different xibs – Zink Oct 5 '12 at 6:54

1 Answer

Don't use AutoLayout because your iOS5 users won't even be able to run your app. Keep "Use Autolayout" unchecked in Interface Builder. Instead, use springs and struts in IB or your views' autoresizingMask property in code.

share|improve this answer
Do you have any code or reference link to set autoresizingMask through code or xib ? – Zink Oct 5 '12 at 8:51
Here's a good summary from another stackoverflow question: stackoverflow.com/questions/10468389/… – erurainon Oct 5 '12 at 8:58
The answer would be even nicer with some code. Also it would get an up-vote from me ;-) As it is now it is not a complete answer. – Johan Karlsson Dec 13 '12 at 9:40
@JohanKarlsson The question was specifically about AutoLayout in xib files, so there is no sample code. I already linked another thread if you do want to do it in code. – erurainon Dec 13 '12 at 11:21
@erurainon Sorry I missed that part (>//<) – Johan Karlsson Dec 14 '12 at 8:52

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.