i've got a iPad TabBarApplication. i subclassed the TabbarController to make the Application react to a orientation change:

@implementation frankenlandTabBarController

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return (
            interfaceOrientation == UIInterfaceOrientationPortrait || 
            interfaceOrientation == UIInterfaceOrientationLandscapeLeft || 
            interfaceOrientation == UIInterfaceOrientationLandscapeRight
            );
}


@end

the problem now is, that i dont want ALL viewcontrollers of my tabbarapp in this orientations.

overwriting the shouldAutorotateToInterfaceOrientation method in a single controller does not have any effect.

any ideas?

thanks!

link|improve this question

Implementing the mentioned shouldAutorotateToInterfaceOrientation method in a specific view controller to prevent rotation works for me though. – brutella Nov 7 '10 at 11:00
@brutella also in a tabbar application? – choise Nov 8 '10 at 17:06
yep, it does ;) – brutella Nov 8 '10 at 17:35
shouldAutorotateToInterfaceOrientation is only called for the top-level view controller. As long as this is the tab bar controller, the other views will not get a chance to change it. – ughoavgfhw Dec 20 '10 at 23:07
feedback

1 Answer

up vote 3 down vote accepted

It's not possible to change the orientation for one view in a tabBar and not for another. If a TabBar is specified then all the subviews (tabs) must have the same orientation appearance. You must set the orientation in each ViewController and in the TabBarController.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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