美文网首页
笔记-横竖屏切换

笔记-横竖屏切换

作者: 蔚嵐成风 | 来源:发表于2018-04-12 20:45 被阅读0次

场景:小demo,实现横竖屏切换

步骤:

1. AppDelegate.m:添加:

- (UIInterfaceOrientationMask)application:(UIApplication*)application supportedInterfaceOrientationsForWindow:(UIWindow*)window

{

        return  UIInterfaceOrientationMaskAll;

}

2. 在想要设置横竖屏的页面添加:

- (BOOL)shouldAutorotate{

    return YES;

}

//支持竖屏方向,同理可设置支持横屏或其他

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {

  return UIInterfaceOrientationMaskPortrait;

}

相关文章

网友评论

      本文标题:笔记-横竖屏切换

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