Unable to lock orientation on iPad Air 2

狂风中的少年 提交于 2019-11-27 17:35:58

问题


The iOS application I am working on has a view that needs to be locked in landscape orientation. Up to this point, that was accomplished by using the shouldAutorotate and supportedInterfaceOrientations methods, but on an iPad Air 2 running iOS9 beta5, these methods never fire and the orientation is not locked.

I have tried on the following devices, methods fired on all except the Air2 (running debug with Xcode beta6): iPhone 6+, iPad Mini, iPad Air 2, iPad 2, iPad 3

The methods not firing are as follows:

- (BOOL)shouldAutorotate {
    return YES;
}

- (UIInterfaceOrientationMask)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}

- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation {
    return UIInterfaceOrientationMaskLandscapeRight;
}

View controller is displayed via presentViewController


回答1:


Multitasking can be turned off by adding the UIRequiresFullScreen field to the application's info.plist with the boolean value YES, and this will allow the orientation delegate methods shouldAutorotate, preferredInterfaceOrientation, and supportedInterfaceOrientations to fire.

As far as locking orientation AND supporting multitasking, I have not found a way to do this.




回答2:


The 'Requires full screen' setting can be enabled from 'General' of the target settings.

With this enabled, the orientation code will now run. As mentioned by ackerman91, you can also set UIRequiresFullScreen boolean to YES in the application info.plist or in the target 'Info' tab.




回答3:


I am thinking this is collateral damage with the multi-tasking feature. You won't be able to assume anymore that you own the whole screen. There may be other methods to call to disallow the multi-tasking mode.



来源:https://stackoverflow.com/questions/32359775/unable-to-lock-orientation-on-ipad-air-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!