1、状态栏切换横屏时隐藏的问题
- 在【General】-->【Deployment Info】-->【Device Orientation】勾选上相应地方向
- 由于在 iOS 9 以后,横屏时状态栏会隐藏,如果想要显示状态栏,需要我们时·在
Info.plist
中 设置View controller-based status bar appearance
值为YES
,在view controller
中重写prefersStatusBarHidden
返回false
/** 横屏时是否隐藏状态栏 */
- (BOOL)prefersStatusBarHidden {
return NO;
}
2、只有一个(或几个)界面固定方向,其他界面支持横竖屏切换
- 在【General】-->【Deployment Info】-->【Device Orientation】勾选希望支持的方向,然后在需要固定方向的视图控制器中实现如下两个方法即可。
/** 取消屏幕自动旋转 */
- (BOOL)shouldAutorotate {
return NO;
}
/** 支持旋转的方向 */
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}s