我正在尝试使用以下代码在我的UIWebView
using标签上播放 youtube 视频-<iframe>
NSString *html = @"\
<html><head>\
<style type=\"text/css\">\
body { background-color: transparent;\
color: white; \
}\
</style>\
</head><body style=\"margin:0\">\
<iframe class=\"youtube-player\" width=\"300\" height=\"300\" src=\"http://www.youtube.com/embed/efRNKkmWdc0\" frameborder=\"0\" allowfullscreen=\"true\"></iframe>\
</body></html>";
UIWebView *videoView = [[UIWebView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 460.0)];
[videoView loadHTMLString:html baseURL:nil];
它工作正常。
但是,我需要在 webview 本身上播放这个,而不是使用 iPhone 默认播放器。我如何将其限制为UIWebView
仅播放。我也被定义为iframe
播放器类class=\"youtube-player\"
。但是,它采用了 iPhone 的默认播放器。
任何想法表示赞赏!