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!
shouldAutorotateToInterfaceOrientationmethod in a specific view controller to prevent rotation works for me though. – brutella Nov 7 '10 at 11:00