我有一个 UIButton。按下此按钮时,我会加载带有 youtube 视频的 WebView:
- (IBAction)buttonAction:(id)sender {
UIWebView *webView = [[UIWebView alloc] initWithFrame:[MyButton frame]];
NSString *htmlString = @"<html> (...) </html>"; // HTML w/ the YouTube iFrame
webView.mediaPlaybackRequiresUserAction = NO;
[webView loadHTMLString:htmlString baseURL:nil];
[self.view addSubView:webView];
}
问题是,当它发生时,我有这个结果:
我想在加载 WebView 后立即开始播放视频。
任何提示/解决方案?
谢谢!