我创建了UITabBarController App。该应用程序是三个tabbar项(test1,test2,test3)。选择test1和test2 tabbar项目转到splitviewcontroller(master,detail)。选择test3项目以横向模式转到viewcontroller。 test3项目现在只显示页面肖像,但不会调用shouldAutorotate mehod。
以下是我的示例代码
- (BOOL)shouldAutorotate {
return YES;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
return UIInterfaceOrientationLandscapeRight;
}