↧
Answer by Mike for UIWebView loadHTMLString for playing video file
Try this code: NSString *html = @"\<html><head>\<style type=\"text/css\">\ body {\ background-color: transparent;\ color: white;\ }\</style>\</head><body...
View ArticleAnswer by Zalykr for UIWebView loadHTMLString for playing video file
Keep in mind that this sort of youtube video playing through UIWebView will always show a white screen on the simulator. You need to test it in a device to know if it actually works.Good luck!
View ArticleAnswer by Daniel for UIWebView loadHTMLString for playing video file
try - (void)embedYouTube:(NSString*)urls frame:(CGRect)frame { urls=[urls stringByAppendingString:@"&autoplay=1"]; NSString *htmlString =[NSString stringWithFormat: @"<html><head>...
View ArticleUIWebView loadHTMLString for playing video file
LoadHtmlString UIWebView is not working. I want to play embeded you tube video. I have tried with Embeded HTML string. But some seems broken i am getting white screen. i Have tried with...
View Article
More Pages to Explore .....