应用程序内的Youtube视频播放器(在webview内部播放)

时间:2013-07-20 10:07:26

标签: ios youtube-api

我正在尝试在应用内部Youtube video player(在webview内部播放视频)。是否有任何基于此的教程。或任何示例程序?

先谢谢。

1 个答案:

答案 0 :(得分:1)

您可以在这样的网页浏览中嵌入YouTube视频:

- (void)embedYouTubeInWebView:(NSString*)url theWebView:(UIWebView *)aWebView {     

NSString *embedHTML = @"\
<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=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";

NSString* html = [NSString stringWithFormat:embedHTML, url, aWebView.frame.size.width, aWebView.frame.size.height]; 

[aWebView loadHTMLString:html baseURL:nil];
}