0

可能重复:
shouldAutorotateToInterfaceOrientation 在 iOS 6 中不起作用

我使用的是 xcode 4.5,我只需要在一个包含 webview 的 viewController 上启用界面方向。我该如何启用它。

- (BOOL)shouldAutorotateToInterfaceOrientation在 iOS6 中似乎已弃用

4

2 回答 2

5

相反,您可以使用此 UIViewController

-(BOOL) shouldAutorotate{
        return YES; //supports all
    }

    -(NSUInteger) supportedInterfaceOrientations{

        return UIInterfaceOrientationMaskAllButUpsideDown; //supports all but upside-down
}
于 2012-11-29T06:31:58.820 回答
1

此 API 不再适用于 iOS 6。您无法启用它。查看@Shivan Raptor 分享的链接

于 2012-11-29T06:31:50.957 回答