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.

Possible Duplicate:
Enabling auto layout in iOS 6 while remaining backwards compatible with iOS 5

I know that AutoLayout feature supported from iOS 6.0 and if I want to support iOS 5.0, I had to implement manual methods in willAnimateRotationToInterfaceOrientation to resize the controls in portrait and landscap mode. My question is can I have some settings such that when my application runs on iOS 6.0, it uses AutoLayout and when it runs on iOS 5.0, it uses custom methods? I think checking for iOS version before running custom methods should be the solution but I can't have AutoLayout and Autosize option together. Could someone please suggest their thought on this please. Thanks.

share|improve this question

marked as duplicate by WDUK, Janak Nirmal, Mac, Lafada, evilone Nov 29 '12 at 5:25

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

I'd have a look at the accepted answer here

Essentially, create 2 deployment targets, each using a different storyboard (one which uses Autolayout, and one which doesn't).

share|improve this answer

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