在iOS 8上锁定UIViewController的方向

时间:2014-07-09 14:33:06

标签: ios objective-c ipad uiinterfaceorientation ios8

我的应用使用应锁定到横向模式的视图控制器。它在iOS 6和7中完美运行,但在iOS 8中没有。我想知道是否有人在iOS 8中听到或读到任何关于此功能的信息。

我的代码正在调用- (NSUInteger)supportedInterfaceOrientations,但忽略了返回的值,并且没有从纵向转换为横向。

我的代码:

- (BOOL)shouldAutorotate {
    return YES;
}

- (NSUInteger)supportedInterfaceOrientations {
    return UIInterfaceOrientationMaskLandscape;
}

0 个答案:

没有答案