我的应用使用应锁定到横向模式的视图控制器。它在iOS 6和7中完美运行,但在iOS 8中没有。我想知道是否有人在iOS 8中听到或读到任何关于此功能的信息。
我的代码正在调用- (NSUInteger)supportedInterfaceOrientations
,但忽略了返回的值,并且没有从纵向转换为横向。
我的代码:
- (BOOL)shouldAutorotate {
return YES;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}