我使用的是 xcode 4.5,我只需要在一个包含 webview 的 viewController 上启用界面方向。我该如何启用它。
- (BOOL)shouldAutorotateToInterfaceOrientation
在 iOS6 中似乎已弃用
我使用的是 xcode 4.5,我只需要在一个包含 webview 的 viewController 上启用界面方向。我该如何启用它。
- (BOOL)shouldAutorotateToInterfaceOrientation
在 iOS6 中似乎已弃用
相反,您可以使用此 UIViewController
-(BOOL) shouldAutorotate{
return YES; //supports all
}
-(NSUInteger) supportedInterfaceOrientations{
return UIInterfaceOrientationMaskAllButUpsideDown; //supports all but upside-down
}
此 API 不再适用于 iOS 6。您无法启用它。查看@Shivan Raptor 分享的链接