我在UIWebView中播放了视频。
我已经使用了这段代码
NSString *Str = @"<video controls width=458 height=202 poster=Image.png>
<source src=\"http://Path of the video/Video.mp4\"> </video>";
NSString *path = [[NSBundle mainBundle] pathForResource:@"Image"
ofType:@"png"];
[web loadHTMLString:Str baseURL:[NSURL fileURLWithPath:path]];
我可以停止暂停或停止视频而不点按暂停按钮吗?
任何解决方案?
答案 0 :(得分:1)
你可以停止视频: -
-(void)viewWillDisappear:(BOOL)animated
{
[YourWebView loadHTMLString:nil baseURL:nil];
[super viewWillDisappear:animated];
}