播放 YouTube 视频-ipad

发布于 2024-11-30 11:57:44 字数 833 浏览 2 评论 0原文

在我的应用程序中,我想播放 Youtube URL(ipad)。我使用下面的代码。它只是向我显示一个白屏

Youtube url 是:http://www.youtube.com/watch?v=x61GMbKwMkE

这是我的代码:

NSString *embed = @"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: white;\
}\
</style>\
</head><body style=\"margin:0\">\
<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=320 height=460></embed>\
</body></html>";
NSString *embedURL=[NSString stringWithFormat:embed,appDelegate.videoURL];  
NSLog(@"\n\n\n\n Myurl==%@   %@\n\n\n",embedURL,appDelegate.videoURL);
[[WebView.subviews objectAtIndex:0] setScrollEnabled:NO];
[WebView loadHTMLString:embedURL baseURL:nil];

我正在 XIB 中创建并连接 UIWebView。

任何人指导我做到这一点

感谢您的考虑和努力

In my application i want to play the Youtube URL(ipad).I'm using the below code.It simply show me a White screen

Youtube url is:http://www.youtube.com/watch?v=x61GMbKwMkE

This is my code:

NSString *embed = @"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: white;\
}\
</style>\
</head><body style=\"margin:0\">\
<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=320 height=460></embed>\
</body></html>";
NSString *embedURL=[NSString stringWithFormat:embed,appDelegate.videoURL];  
NSLog(@"\n\n\n\n Myurl==%@   %@\n\n\n",embedURL,appDelegate.videoURL);
[[WebView.subviews objectAtIndex:0] setScrollEnabled:NO];
[WebView loadHTMLString:embedURL baseURL:nil];

I'm creating and connecting UIWebView in XIB.

Anyone Guide me to do this

Thanks For your consideration and effort

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

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

发布评论

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

评论(1

风向决定发型 2024-12-07 11:57:44

Flash is not supported in iOS. Check out the new embed code for YouTube videos that will automatically choose the correct player for each environment.

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