美文网首页
iOS 单个页面屏幕旋转方法

iOS 单个页面屏幕旋转方法

作者: 清蘂翅膀的技术 | 来源:发表于2017-06-29 16:13 被阅读0次

    #pragma mark - 屏幕旋转

    - (UIInterfaceOrientationMask)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskPortrait;

    }

    - (BOOL)shouldAutorotate {

    return NO;

    }

    - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {

    return UIInterfaceOrientationPortrait;

    }

    相关文章

      网友评论

          本文标题:iOS 单个页面屏幕旋转方法

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