美文网首页
横竖屏的问题

横竖屏的问题

作者: 兔Hio | 来源:发表于2016-08-15 16:13 被阅读19次

    在要横屏的前一页VC:

    -(BOOL)shouldAutorotate{

    return YES;

    }

    - (UIInterfaceOrientationMask)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskPortrait;

    }

    在横屏的当前页:

    -(BOOL)shouldAutorotate{

    return YES;

    }

    //

    - (UIInterfaceOrientationMask)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskLandscapeLeft;

    }

    -(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{

    return UIInterfaceOrientationLandscapeLeft;

    }



    相关文章

      网友评论

          本文标题:横竖屏的问题

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