2

我在 iOS 中有一个通用项目,并且在所有方向上都可以正常工作,但在 iOS 6.0 中

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation

方法不再调用。

甚至其他方法都不起作用。

建议我一些快速的解决方案。

4

2 回答 2

0

您必须覆盖- (NSUInteger)supportedInterfaceOrientationsand - (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation。阅读 Apple 文档,或观看 2012 WWDC 的 Sessions。

于 2012-09-21T10:00:08.723 回答
0

将此方法添加到您的视图控制器:

- (BOOL) shouldAutorotate {
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
        return YES;
    } else {
        return NO;
    }
}

这为我解决了。但是,就 iOS 6 发行说明而言,我不应该这样做:

“为了兼容性,仍然实现 shouldAutorotateToInterfaceOrientation: 方法的视图控制器不会获得新的自动旋转行为。(换句话说,它们不会回退到使用应用程序、应用程序委托或 Info.plist 文件来确定支持的方向。 )”。

iOS 6 发行说明

于 2012-09-26T09:13:47.867 回答