众所周知,我们可以将本地媒体文件嵌入 webview 和来自 youtube 的链接(可流式传输)。
但我不确定我们是否可以链接到上面的网址。我试过了<embed>, <video>, <iframe> and <object>
。没有什么对我有用。
NSString *htmlString =
@"<html><head></head><body><video width="%0.0f" height="%0.0f" src="%@"></video></body></html>"
;
NSString* html = [NSString stringWithFormat:url,self.webView.frame.size.width,self.webView.frame.size.height,self.htmlstr];
[self.webView loadHTMLString:html baseURL:nil];