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.