美文网首页iOS Developerios实用开发技巧
IOS屏幕开启旋转,UIAlertController 弹窗后,

IOS屏幕开启旋转,UIAlertController 弹窗后,

作者: 动力机车 | 来源:发表于2017-01-03 19:39 被阅读250次

    1、创建一个UIAlertController的category

    2、重写这两个方法

    - (BOOL)shouldAutorotate {

    return NO;

    }

    -(NSUInteger)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskPortrait;

    }

    3、再import这个category

    4、完成

    相关文章

      网友评论

        本文标题:IOS屏幕开启旋转,UIAlertController 弹窗后,

        本文链接:https://www.haomeiwen.com/subject/fgunvttx.html