我的应用程序应该只是风景,而在iOS 6及更早版本的时候,我没有任何问题.现在使用iOS 7,它根本不会旋转.
在我的应用程序设置中,我将其设置为仅左/右.在我的视图控制器中,我使用以下内容:
- (NSUInteger)supportedInterfaceOrientations { return UIInterfaceOrientationLandscapeLeft | UIInterfaceOrientationLandscapeRight; }
我也习惯使用这个,现在已经不推荐使用:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation { return UIInterfaceOrientationIsLandscape(orientation); }
新的似乎应该是应用程序,但使用这会崩溃我的应用程序.任何想法将不胜感激,因为我的应用程序被迫在我的iPad和模拟器中肖像.谢谢!