美文网首页
实现横屏签名

实现横屏签名

作者: 一路有你_60788 | 来源:发表于2017-04-01 10:38 被阅读0次

首先是横屏

#pragma mark -----------横屏---------------------
- (BOOL)shouldAutorotate

{
    
    return NO;
    
}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations

{
    
    return UIInterfaceOrientationMaskLandscape;
    
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation

{
    
    return UIInterfaceOrientationLandscapeRight;
    
}

相关文章

网友评论

      本文标题:实现横屏签名

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