我已经使用 UIWebView 将 youtube 嵌入到视图中。
NSString *html = [NSString stringWithFormat:@"<html> <body style=\"margin:0;\"><iframe class=\"youtube-player\" type=\"text/html\" width=\"%f\" height=\"%f\" src=\"http://www.youtube.com/embed/%@\" frameborder=\"0\" allowfullscreen></iframe></body></html>", self.view.bounds.size.width - kTitleLabelLeftIndent*2, kUIWebViewHeight, self.utubeId];
utubeWebView = [[UIWebView alloc]init];
[utubeWebView setAllowsInlineMediaPlayback:YES];
[utubeWebView loadHTMLString:html baseURL:nil];
youtube URL 很好地嵌入了我的应用程序中。当我点击 utudeWebView 上的播放按钮时,它会显示如下全屏:
顶部的红色控制器栏看起来不太好。有人可以告诉我如何更改该栏的颜色吗?
任何建议将不胜感激。提前致谢,
约翰