iOS 7 – 仅在一个视图控制器中限制横向方向

前端之家收集整理的这篇文章主要介绍了iOS 7 – 仅在一个视图控制器中限制横向方向前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只需要在纵向模式下打开第一个视图控制器.由于其余视图控制器将使用两个方向.所以我在plist文件添加了两个方向.
-(BOOL) shouldAutorotate {
    //Never called
}

- (NSUInteger) supportedInterfaceOrientations {
    //Never called
}

任何人都可以告诉我如何限制

解决方法

通过创建UINavigationController类和重写来修复它
-(NSUInteger)supportedInterfaceOrientations
{
    AppDelegate *appDelegate = (AppDelegate *) [UIApplication sharedApplication].delegate;
    if(appDelegate.isOrientationOn) {
        return UIInterfaceOrientationMaskAll;
    }
    return UIInterfaceOrientationMaskPortrait;
}

在根窗口中使用此自定义导航控制器类,这就是全部.

原文链接:https://www.f2er.com/iOS/334694.html

猜你在找的iOS相关文章