时间:2021-05-02
这篇文章主要介绍了在ios启动页强制竖屏,进入App后允许横屏与竖屏的相关资料,需要的朋友可以参考下。
方法如下
1、修改App-info.plist(在XCode中General中设置 一样的效果)
? 1 2 3 4 <key>UISupportedInterfaceOrientations</key> <array> <string>UIInterfaceOrientationPortrait</string> </array>2、AppDelegate中:
? 1 2 3 - (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开发者们能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文介绍了iOS如何实现强制转屏、强制横屏和强制竖屏的实例代码,分享给大家今天项目中遇到正在看视频的时候账号被挤,如果当时是横屏的情况下,需要强制竖屏。真头疼,
电脑屏幕横屏与竖屏之间怎么来回切换?电脑的横屏与竖屏来回切换,很多人可能不适应,但是在某些情况下却很是好使。昨天走的时候不小心,不知怎么一下子竖屏了,因为只有一
在移动端中我们经常碰到横屏竖屏的问题,那么我们应该如何去判断或者针对横屏、竖屏来写不同的代码呢。这里有两种方法:一:CSS判断横屏竖屏写在同一个CSS中XML/
在移动端中我们经常碰到横屏竖屏的问题,那么我们应该如何去判断或者针对横屏、竖屏来写不同的代码呢。这里有两种方法:一:CSS判断横屏竖屏写在同一个CSS中XML/
图库在JB和JB2的版本上显示的行为是:横屏全屏显示,竖屏会显示statusbar。如何使竖屏也不显示statusbar。修改alps/packages/app