怎樣用UIWebView的loadHTML方法加載視頻?有embed標(biāo)簽,里面有視頻鏈接。我用手機(jī)打的,完整標(biāo)簽復(fù)制不過(guò)來(lái),希望有思路的或者做過(guò)的指點(diǎn)一下,萬(wàn)分感謝!
ringa_lee
NSString *url=@"your url";
[self.webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
self.webview.scrollView.bounces = NO;
[self.webview setMediaPlaybackRequiresUserAction:NO];
When UIWebView opens a video link, it will jump to MPMoviePlayerViewController by default. You can directly create an MPMoviePlayerViewController to load the video
MPMoviePlayerViewController *moviePl = [[MPMoviePlayerViewController alloc] initWithContentURL:URL];
[self presentMoviePlayerViewControllerAnimated:moviePl];
You can try it