我有一个纵向模式的 iPhone 应用程序,它显示一个 web 视图。在 webview 中有一个 HTML5 视频,我将在横向模式下显示它。
所以我在我的 ViewControlleDelegate 方法中有(因为我的应用程序仅处于纵向模式):
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
return NO;
}
所以只有当我显示 HTML5 视频时,webkit 或我的应用程序才有办法在横向模式下切换?
谢谢!