当我显示 HTML5 视频时横向

发布于 2024-12-26 16:43:02 字数 338 浏览 2 评论 0原文

我有一个纵向模式下的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三岁铭 2025-01-02 16:43:02

尝试使用:[[UIApplication sharedApplication] setStatusBarOrientation:animated:]。我想它一定对你有帮助。

Try to use: [[UIApplication sharedApplication] setStatusBarOrientation:animated:]. I think it must help you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文