第46月第23天 iOS强制横屏
Posted lianhuaren
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第46月第23天 iOS强制横屏相关的知识,希望对你有一定的参考价值。
1.
在AppDelegate.m中添加转屏的代理方法
- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(nullable UIWindow *)window
{
if (self.allowRotation == YES) {
//横屏
return UIInterfaceOrientationMaskLandscape;
}else{
//竖屏
return UIInterfaceOrientationMaskPortrait;
}
}
http://www.cocoachina.com/articles/899237?filter=ios
以上是关于第46月第23天 iOS强制横屏的主要内容,如果未能解决你的问题,请参考以下文章