0
我想讓Youtube video player
裏面的應用程序(其中播放視頻webview
本身)。是否有任何教程基於this.or任何示例程序?Youtube視頻播放器裏面的應用程序(這在webview本身內播放)
在此先感謝。
我想讓Youtube video player
裏面的應用程序(其中播放視頻webview
本身)。是否有任何教程基於this.or任何示例程序?Youtube視頻播放器裏面的應用程序(這在webview本身內播放)
在此先感謝。
您可以嵌入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];
}