我显示HTML5视频时的横向方向

时间:2012-01-12 19:19:31

标签: iphone html5-video mobile-webkit device-orientation

我有一个纵向模式的iPhone应用程序,显示webview。在webview中有一个HTML5视频,我将以横向模式显示它。

所以我的ViewControlleDelegate方法(因为我的应用程序只处于纵向模式):

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
    return NO;
}

因此,只有当我展示HTML5视频时,才能从webkit或我的应用程序中切换横向模式?

谢谢!

1 个答案:

答案 0 :(得分:0)

尝试使用:[[UIApplication sharedApplication] setStatusBarOrientation:animated:]。我认为它必须对你有帮助。