目标:app只在个别界面支持屏幕的横向旋转,别的界面都是只能竖屏
1.首先勾选手机支持的旋转方向
2. AppDelegate.h中设置一个属性
@property(nonatomic,assign)BOOL allowRotation;//是否允许在横向上旋转
AppDelegate.m中实现如下方法
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(nullable UIWindow *)window{
if (_allowRotation == YES) { // 如果属性值为YES,则允许屏幕旋转
return UIInterfaceOrientationMaskLandscape; // 这里是屏幕要旋转的方向(只能在横屏方向旋转)
}else{
return (UIInterfaceOrientationMaskPortrait);//只能竖屏
}
}
3.在需要横向旋转的界面做一下设置
AppDelegate * appDelegate = (AppDelegate *)[UIApplication sharedApplication].delegate;
appDelegate.allowRotation = YES;//(以上2行代码,可以理解为打开横屏开关)
[self setNewOrientation:YES];