美文网首页
禁止某个控制器横屏

禁止某个控制器横屏

作者: biyu6 | 来源:发表于2018-06-20 09:59 被阅读0次
    - (UIInterfaceOrientationMask)supportedInterfaceOrientations {//横竖屏的限制
        if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
            return UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight ;
        }else{
            return UIInterfaceOrientationMaskPortrait;
        }
    }
    
    

    相关文章

      网友评论

          本文标题:禁止某个控制器横屏

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