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

In XCode4.2 + iOS5 SDK, I set "Supported Device Orientation" to be "Portrait" only. I expect that would make all views in the application to only support "Portrait" orientation. However, while I rotate the iPhone simulator, I found that other orientations still work.

It seems that the method shouldAutorotateToInterfaceOrientation in ViewController is the key to decide whether given orientation is supported. So, why bother to have "Supported Device Orientation" setting in the application level if doesn't limit orientation?

share|improve this question

1 Answer

up vote 10 down vote accepted

Here's a quote from documentation for UISupportedInterfaceOrientations property:

UISupportedInterfaceOrientations (Array - iOS) specifies the interface orientations your application supports. The system uses this information (along with the current device orientation) to choose the initial orientation in which to launch your application. The value for this key is an array of strings.

E.g. this property determines possible orientations your application may be launched in (it's actually most used on iPad). The latter orientation changes are up to your ViewControllers.

share|improve this answer
So, UISupportedInterfaceOrientations is just to determine launch interface orientation, right? – Morgan Cheng Dec 27 '11 at 13:50
Yes, it affects only initial orientation at launch. – iHunter Dec 27 '11 at 14:10
good question and good answer – 動靜能量 Aug 18 '12 at 12:49

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.