I have a strange problem. My app keeps starting in landscape mode. If I open it in simulator it rotates to landscape mode automatically. When I start it on iPhone it firstly starts in landscape mode and then shortly after it rotates to correct position. I have set "Initial interface orientation" in .plist to portrait, but that changed nothing.

link|improve this question

25% accept rate
are you using cocos2d? – Matisse VerDuyn Feb 9 at 16:21
no, simple iOS application – Jaroslav Feb 9 at 16:58
feedback

2 Answers

up vote 3 down vote accepted

I had the same problem. If you go to your Supported Interface Orientations you'll see Item 0 ... Item 1 ...

And so on. If you edit this list so that Portrait (bottom home button) is the first item in the list then your app will open in portrait mode. You can still support other orientations as items 1 thru 3.

link|improve this answer
1  
Thanks! It's so simple, but I have spent many hours with this. – Jaroslav Feb 14 at 17:09
feedback

go to your supported device orientations and check if you have portrait mode selected

link|improve this answer
All modes are selected (in fact I need them all). – Jaroslav Feb 9 at 14:04
and what about the mehod - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOr‌​ientation { // Return YES for supported orientations return YES; } – Bonnie Feb 10 at 5:38
feedback

Your Answer

 
or
required, but never shown

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