简单的 UIWebView

发布于 2024-12-20 11:33:57 字数 117 浏览 1 评论 0原文

我正在制作一个标签栏应用程序,其中一个标签是 YouTube 频道。它工作正常且完美,但一个问题是当我单击它播放的视频时,但仅在标准视图中而不是在横向视图中。关于如何修复的任何想法。我确信它真的很简单,但我一直没有运气。

I'm making a tab bar app and one of the tabs is a youtube channel. It works fine and is perfect but the one problem is when i click on the video it plays but only in the standard view and not in Landscape. Any ideas on how to fix. Im sure its really simple but i've been having no luck.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

扛刀软妹 2024-12-27 11:33:58

这个问题可能回答了您想要做的事情:
Webview 自动调整为 iPhone 中的纵向和横向视图

最重要的是,您需要视图控制器告诉应用程序它支持其他方向,而不仅仅是纵向。

- (BOOL) shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation) orientation 
{
    return YES;
}

This question probably answers what you are trying to do:
Webview resizes automatically to portrait and landscape view in iphone

The key thing to take away from it is that you need your view controller to tell the app that it supports the other orientations, not just portait.

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