-
Notifications
You must be signed in to change notification settings - Fork 1.8k
转屏适配
紫枫 edited this page Sep 18, 2022
·
1 revision
转屏相关参考ZFAppDelegate中代码
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
ZFInterfaceOrientationMask orientationMask = [ZFLandscapeRotationManager supportedInterfaceOrientationsForWindow:window];
if (orientationMask != ZFInterfaceOrientationMaskUnknow) {
return (UIInterfaceOrientationMask)orientationMask;
}
/// 这里是非播放器VC支持的方向
return UIInterfaceOrientationMaskPortrait;
}
播放器VC中增加
- (BOOL)shouldAutorotate {
return NO;
}
- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait;
}