我正在使用以下代码
在uiwebview中播放youtube视频 NSString *embedHTML = @"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: white;\
}\
</style>\
</head><body style=\"margin:0\">\
<embed id=\"yt\" src=\"http://www.youtube.com/embed/%@?autoplay=0&showinfo=0&controls=0\" type=\"application/x-shockwave-flash\" \
width=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";
NSString *html = [NSString stringWithFormat:embedHTML, videoToken, videoView.frame.size.width, videoView.frame.size.height];
[videoView loadHTMLString:html baseURL:nil];
我的问题是,在youtube视频未加载之前,我想显示加载或某些事情,说它正在加载。我试图在webview中检测到完成加载,但在该方法中它会出现2-3次。
请帮忙
答案 0 :(得分:-1)
如果你想检测视频是否加载然后使用下面的方法,它是UIWebview的委托方法
您必须在View Controller Class中设置UIWebview的委托。
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
//your code here
}
让我知道它的工作与否!!!
快乐编码!!!!