UIWebView 中的 YouTube 视频

发布于 2024-12-06 10:25:50 字数 590 浏览 2 评论 0原文

我已经设置了一个 UIWebView 来显示我的 YouTube 频道,我正在使用此代码

[youTube loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.youtube.com/v/user/MyChannel/"]]];

当我构建并在模拟器上运行时此代码可以工作,但是当我想在我的设备上播放视频时,视频永远不会显示...

控制台说当我使用我的设备编译时

警告:无法读取 /Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.0 (9A5313e)/Symbols/System/Library/Internet 的符号插件/QuickTime Plugin.webplugin/QuickTime 插件(未找到文件)。 警告:本地未找到 QuickTime Plugin.webplugin/QuickTime Plugin 的副本,正在从远程设备上的内存中读取。这可能会减慢调试会话的速度。

我想我必须安装 QuickTime 插件?我真的不知道我必须做什么..

谢谢!

I have set up a UIWebView to show my YouTube's Channel, I'm using this code

[youTube loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.youtube.com/v/user/MyChannel/"]]];

This work when I build and go on the simulator but when I want to play a video on my device, the video never show up...

The console say that when I compile with my device

warning: Unable to read symbols for /Developer/Platforms/iPhoneOS.platform/DeviceSupport/5.0 (9A5313e)/Symbols/System/Library/Internet Plug-Ins/QuickTime Plugin.webplugin/QuickTime Plugin (file not found).
warning: No copy of QuickTime Plugin.webplugin/QuickTime Plugin found locally, reading from memory on remote device. This may slow down the debug session.

I think I have to install the QuickTime Plugin ? I don't really know what I have to do..

Thanks !

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

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

发布评论

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

评论(1

毁虫ゝ 2024-12-13 10:25:50

您正在使用模拟器。模拟器不支持 YouTube 视频。在设备上测试您的代码。
请检查此答案以了解如何正确嵌入 YouTube 视频。
嵌入 YouTube 视频

要实际阅读该频道,我认为您可以使用 RSS您的频道或 youtube 数据 api 的 Feed并解析它,然后让用户选择单独的视频

You're using a Simulator. Youtube videos are not supported on the simulator. Test yout code out on a device.
Please check this answer on how to embbed youtube videos correctly.
Embedding YouTube videos on

To actually read the channel, I think you can use either the RSS feed for your channel or the youtube data api and parse this, than let the user choose the sperate Videos

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