访问打开的 iPhone 本机视频播放器而不是 HTML5 视频
令人烦恼的是,当您在 HTML 页面上加载 HTML5 视频并加载到 UIWebView 中时,当您最终按下播放按钮时,它会打开本机播放器来播放该视频。
有没有办法访问本机播放器,以便我可以覆盖宽高比或隐藏控件?
我尝试检查添加到我的 UIWebView 中的所有视图,但这并没有让我得到任何结果。
干杯
Annoyingly, when you have an HTML5 video on an HTML page, loaded inside an UIWebView, it opens the native player to play that video when you finally press the play button.
Is there a way to access that native player so I can either override the aspect ratio or hide the controls?
I tried checking all of the views that were added to my UIWebView, but that didn't get me anywhere.
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以拦截 UIWebView 中视频的点击并启动本机播放器将其指向视频 url。
通过这种方式,您可以完全控制视频播放器。
Maybe you could intercept the click on video inside your UIWebView and starts the native player pointing it to the video url.
In this way you have full control on the video player.