Swift WKWebView配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift WKWebView配置相关的知识,希望对你有一定的参考价值。
我有一个小应用程序。我在webview中打开youtube并看到视频。一切都很好但是当我点击视频时它正在打开新页面并自动全屏启动视频。我不想自动开始播放视频。
我该怎么做?
我的代码:
let conf = WKWebViewConfiguration()
conf.allowsInlineMediaPlayback = false //Tried and Did not work
conf.requiresUserActionForMediaPlayback = true //Tried and Did not work
super.init(frame: CGRect.zero, configuration: conf)
答案
试试conf.allowsInlineMediaPlayback = true。
以上是关于Swift WKWebView配置的主要内容,如果未能解决你的问题,请参考以下文章