作者: 傲骨天成科技 | 来源:发表于2016-05-15 15:43 被阅读72次

    pragma mark ----只支持横屏

    -(BOOL)shouldAutorotate{
    return NO;
    }

    -(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation
    {
    return UIInterfaceOrientationLandscapeLeft;
    }

    • (UIInterfaceOrientationMask)supportedInterfaceOrientations
      {
      return UIInterfaceOrientationMaskLandscape;
      }

    p 方法二

    • (UIInterfaceOrientationMask)supportedInterfaceOrientations
      {
      return UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;
      }

    相关文章

      网友评论

          本文标题:

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