ios – 无法锁定iPad Air 2上的方向

前端之家收集整理的这篇文章主要介绍了ios – 无法锁定iPad Air 2上的方向前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发的iOS应用程序有一个视图,需要在横向上锁定.到目前为止,这是通过使用shouldAutorotate和supportedInterfaceOrientations方法实现的,但是在运行iOS9 beta5的iPad Air 2上,这些方法从不启动,方向未锁定.

我尝试过以下设备,除了Air2之外的所有方法(使用Xcode beta6运行调试)都是这样的:
iPhone 6,iPad Mini,iPad Air 2,iPad 2,iPad 3

不射击的方法如下:

- (BOOL)shouldAutorotate {
    return YES;
}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    return UIInterfaceOrientationMaskLandscapeRight;
}

View控件通过presentViewController显示

解决方法

可以通过将UIRequiresFullScreen字段添加到应用程序的info.plist(布尔值为YES)来关闭多任务,这将允许引用委托方法shouldAutorotate,preferredInterfaceOrientation和supportedInterfaceOrientations来触发.

至于锁定方向和支持多任务,我还没有找到一种方法来做到这一点.

原文链接:https://www.f2er.com/iOS/337103.html

猜你在找的iOS相关文章