I have a built-in youtube in a view using UIWebView.
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];
The YouTube URL is well embedded in my application. And when I click the Play button on utudeWebView, it shows full screen mode:

where the red control panel on top does not look good. Can someone tell me how can I change the color of this panel?
Any suggestions would be appreciated. Thanks in advance,
John
source share