iOS 横竖屏的那些事

iOS 横竖屏的那些事,第1张

先上图

 上图的设置只对手机起作用,iPad需要在Info.plist中单独设置

简单说就是上图中的勾选与Info.plist中的Supported interface orientations中的设置是联动的





    UIInterfaceOrientationPortrait
    UIInterfaceOrientationLandscapeLeft
    UIInterfaceOrientationLandscapeRight

 IPad设置

Supported interface orientations (iPad)是新的字段,且只能在Info.plist中手动设置





    UIInterfaceOrientationPortrait
    UIInterfaceOrientationLandscapeLeft
    UIInterfaceOrientationLandscapeRight
    UIInterfaceOrientationPortraitUpsideDown

完整的截图Info.plist各个选项根据需要自行添加

支持全方向

只支持竖屏

 在控制器中关闭屏幕旋转

- (BOOL)shouldAutorotate {
    return NO;
}

这样你怎么拿着ipad 或者iPhone都会是竖屏的启动图来打开App

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/994464.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存