美文网首页
iOS问题记录UIAlertViewController弹出时崩

iOS问题记录UIAlertViewController弹出时崩

作者: ___________枫林晚 | 来源:发表于2021-07-16 10:14 被阅读0次

    解决方案

    1. 子类化 UIAlertViewController
    2. 实现下面几个方法
    - (NSUInteger)supportedInterfaceOrientations {
        return UIInterfaceOrientationMaskAll;
    }
    
    - (BOOL) shouldAutorotate {
        return YES;
    }
    
    - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
        return UIInterfaceOrientationPortrait;
    }
    
    

    相关文章

      网友评论

          本文标题:iOS问题记录UIAlertViewController弹出时崩

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