我有一个纵向模式的iPhone应用程序,显示webview。在webview中有一个HTML5视频,我将以横向模式显示它。
所以我的ViewControlleDelegate方法(因为我的应用程序只处于纵向模式):
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
return NO;
}
因此,只有当我展示HTML5视频时,才能从webkit或我的应用程序中切换横向模式?
谢谢!
答案 0 :(得分:0)
尝试使用:[[UIApplication sharedApplication] setStatusBarOrientation:animated:]
。我认为它必须对你有帮助。