In my iPad App I have a modal view (UIViewController with modal presentation style UIModalPresentationPageSheet)
UIViewController
UIModalPresentationPageSheet
Inside the view is a UIWeb
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];