当我显示 HTML5 视频时横向
我有一个纵向模式下的 iPhone 应用程序,可以显示网络视图。在 web 视图中有一个 HTML5 视频,我不会以横向模式显示它。
所以我在我的 ViewControlleDelegate 方法中(因为我的应用程序仅处于纵向模式):
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
return NO;
}
那么,有一种方法可以从 webkit 或我的应用程序中仅在显示 HTML5 视频时切换到横向模式?
谢谢!
i have a iPhone application in portrait mode that show a webview. In the webview there is an HTML5 video and i woutl show it in landscape mode.
So i have in my ViewControlleDelegate method (because my application is only in portrait mode):
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
return NO;
}
So there is a way from webkit or in my application to switch in landscape mode only when i showing a HTML5 video?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用:
[[UIApplication sharedApplication] setStatusBarOrientation:animated:]
。我想它一定对你有帮助。Try to use:
[[UIApplication sharedApplication] setStatusBarOrientation:animated:]
. I think it must help you.