我正在使用以下代码启动 youtube 视频。它工作得很好,除了每 30 秒屏幕变暗。点击屏幕会再次使其变亮(并且还会按预期调出视频控件。)即使我为我的 iPod touch 关闭了自动锁定,也会发生这种情况。到底是怎么回事?
NSString* embeddedCode =@"<html><body bgcolor='#008080'><center><iframe width='212' height='172' src='http://www.youtube.com/embed/[VIDEOID]?rel=0' frameborder='0'></iframe><p style='color: yellow;'>YouTube Video</p><p style='color: yellow;'>(Requires Internet access.)</p></center><body></html>";
UIWebView* videoView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320,350)];
[videoView loadHTMLString:embeddedCode baseURL:nil];
[self.view addSubview:videoView];