关于iOS中支持屏幕取向的讲解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于iOS中支持屏幕取向的讲解相关的知识,希望对你有一定的参考价值。

可以通过设置 VC对应的 XIB 中 View 的show attrubite inspector属性,更改其 Orientation为 Landscape,即可默认为横屏布局。
我们可以通过3种方式设置 App界面的取向。

第一种:通过全局设置
// The system only calls this method if the application delegate has not
// implemented the delegate equivalent. It returns the orientations specified by
// the application‘s info.plist. If no supported interface orientations were
// specified it will return UIInterfaceOrientationMaskAll on an iPad and
// UIInterfaceOrientationMaskAllButUpsideDown on a phone.  The return value
// should be one of the UIInterfaceOrientationMask values which indicates the
// orientations supported by this application.
- (NSUInteger)supportedInterfaceOrientationsForWindow:(UIWindow *)window NS_AVAILABLE_ios(6_0);

第2种,通过Deployment Info下的 Device Orientation 中选择取向,当然这里和 Plist 文件里Supported interface orientations对应的取向一致,改变一个地方另一个地方也会随之改变。

第3种,单一的设置 VC 做支持的取向。通过函数(iOS 6.0以后)
- (BOOL)shouldAutorotate{
return YES;
}

- (NSUInteger)supportedInterfaceOrientations{
   return UIInterfaceOrientationMaskLandscape;
}
可以设置当前 VC 所支持的方向。

最终视图所支持的取向由这3个的交集决定。需要注意的是Plist 文件里所支持的方向,会按照第一项来执行。(若支持)

参考资料:http://www.tuicool.com/articles/e2q6zi, 
图片:横屏布局.png 
技术分享

以上是关于关于iOS中支持屏幕取向的讲解的主要内容,如果未能解决你的问题,请参考以下文章

Xamarin挖墙脚系列:IOS-关于手机支持的屏幕方向

讲解iOS开发中拖动视图的实现

安卓手机录制屏幕视频小妙招

处理屏幕旋转上的片段重复(带有示例代码)

如何在屏幕方向更改时附加片段?

利用棋盘格重新校正摄像头,求取Apriltag取向