我正在开发的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显示