第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强制横屏的主要内容,如果未能解决你的问题,请参考以下文章

第11月第23天 markedTextRange 崩溃

第17月第7天 iOS 数组越界,防Crash处理

第43月第6天 iOS静态库冲突

第43月第6天 iOS静态库冲突

第18月第10天 iOS11 uicollectionview

第13月第13天 iOS 放大消失动画