在UIViewController上启用接口方向

时间:2012-11-29 06:14:07

标签: iphone ios uiwebview uiinterfaceorientation

  

可能重复:
  shouldAutorotateToInterfaceOrientation is not working in iOS 6

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

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

2 个答案:

答案 0 :(得分:5)

相反,您可以使用此UIViewController

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

    -(NSUInteger) supportedInterfaceOrientations{

        return UIInterfaceOrientationMaskAllButUpsideDown; //supports all but upside-down
}

答案 1 :(得分:1)

此API在iOS 6中不再有效。您无法启用它。查看@Shivan Raptor分享的链接