iOS屏幕旋转

2016-06-17  本文已影响78人  AlenChen

项目需求是在导航栏基类下保持竖屏,步骤如下:

第一步如下图,表示设备只支持竖屏

第二步,通过继承导航类创建一个类,在该类里面实现以下方法:

- (BOOL)shouldAutorotate {

return [self.visibleViewController shouldAutorotate];

}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations{

return [self.visibleViewController supportedInterfaceOrientations];

}

然后在导航子视图里面贴上代码

- (BOOL)shouldAutorotate{

return NO;

}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {

return UIInterfaceOrientationMaskPortrait;

}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {

return UIInterfaceOrientationPortrait;

}

具体的不再赘述,感兴趣的可以看看这篇文章,讲得比较详细:iOS 关于屏幕旋转shouldAutorotate - 简书

上一篇 下一篇

猜你喜欢

热点阅读