Stop video in UIWebView

前端 未结 6 1745
别那么骄傲
别那么骄傲 2020-12-28 21:29

In my iPad App I have a modal view (UIViewController with modal presentation style UIModalPresentationPageSheet)

Inside the view is a UIWeb

6条回答
  •  长情又很酷
    2020-12-28 21:41

    Also you can try to pause video:

    NSString *script = @"var videos = document.querySelectorAll(\"video\"); for (var i = videos.length - 1; i >= 0; i--) { videos[i].pause(); };";
    [webView stringByEvaluatingJavaScriptFromString:script];
    

提交回复
热议问题