欢迎来到代码驿站!

iOS代码

当前位置:首页 > 移动开发 > iOS代码

ios启动页强制竖屏(进入App后允许横屏与竖屏)

时间:2021-01-22 12:25:28|栏目:iOS代码|点击:

这篇文章主要介绍了在ios启动页强制竖屏,进入App后允许横屏与竖屏的相关资料,需要的朋友可以参考下。

方法如下

1、修改App-info.plist(在XCode中General中设置 一样的效果)

 <key>UISupportedInterfaceOrientations</key>
 <array>
  <string>UIInterfaceOrientationPortrait</string>
 </array>

2、AppDelegate中:

- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {
 return UIInterfaceOrientationMaskAllButUpsideDown;
}

贴一下苹果对这个的解释,可以放心使用:

Discussion

This method returns the total set of interface orientations supported by the app. When determining whether to rotate a particular view controller, the orientations returned by this method are intersected with the orientations supported by the root view controller or topmost presented view controller. The app and view controller must agree before the rotation is allowed.

If you do not implement this method, the app uses the values in the UIInterfaceOrientation key of the app's Info.plist as the default interface orientations.

总结

上一篇:iOS中使用NSURLConnection处理HTTP同步与异步请求

栏    目:iOS代码

下一篇:iOS中的地理位置的获取及plist设置方法

本文标题:ios启动页强制竖屏(进入App后允许横屏与竖屏)

本文地址:http://www.codeinn.net/misctech/49128.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有