UIWebView 中的 YouTube 视频
我已经设置了一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在使用模拟器。模拟器不支持 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