From my modal view controller, you can choose between two options, then each one shows a tabBar and so on. My Modal view clearly auto rotates, but the tabBars do not, even though I set for every UIViewController in my Project:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return YES;
}

I even had a new view with tabBar that was supposed to be called when in Landscape mode, but unfortunately it is still in Potrait:

Looks weird to me:

Looks weird to me.

link|improve this question

You don't have 'iPad' in the left top corner - have you jailbroken your device? In that case, are you using anything that could cause strange behavior like this? The only times I've seen this was on beta devices... – Tom van der Woerdt Dec 30 '11 at 19:52
It does look weird as the UITabBar seems to rotate but the status bar does not (or the other way around). Your entire viewController stack may have issues as this is clearly an uncommon result. – Till Dec 30 '11 at 19:53
No, not Jailbreaked at all :) Just the standard one, connected via USB … – Urban Seifert Dec 30 '11 at 20:07
Another weird thing is that when i configure the plist file of my target and set the interface orientation to portrait, my "Intro"view with the selection is still able to autorotate… – Urban Seifert Dec 30 '11 at 20:10
feedback

1 Answer

In iOS, the view will only rotate if all views agree.

Make sure that your UITabBarController also agrees, and the other tabs as well.

link|improve this answer
1  
+1 for correct answer - also make sure that in case you are using a UINavigationController in your app, all views on its/their stack agree on the rotation. – Till Dec 30 '11 at 19:50
I did, as mentioned above, every viewController returns YES. – Urban Seifert Dec 30 '11 at 20:08
feedback

Your Answer

 
or
required, but never shown

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