iOS横竖屏设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS横竖屏设置相关的知识,希望对你有一定的参考价值。

1.如果你的整个应用程序设置的是竖屏,如下:

技术分享

如果你要应用的某个界面变为横屏,侧需要在该界面控制器中添加如下代码(前提是界面是present进去的,不是push进去的,消失要用dismiss)

技术分享
 1 - (BOOL)shouldAutorotate{
 2     return NO;
 3 }
 4 - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{
 5      return UIInterfaceOrientationLandscapeRight;
 6 }
 7 
 8 -(UIInterfaceOrientationMask)supportedInterfaceOrientations{
 9     return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight ;
10 }
View Code

这样后到那个界面后就横屏了

以上是关于iOS横竖屏设置的主要内容,如果未能解决你的问题,请参考以下文章

Unity 之 代码切换横竖屏

iOS_21团购_Popover适应iPad横竖屏切换

iOS横竖屏设置

android怎么设置横竖屏切换

unity发布到手机端中如何转换横竖屏

android如何在代码中判断横竖屏