Overriding MPNowPlayingInfoCenter while using WKWebView

半腔热情 提交于 2019-12-03 07:26:30

Although it's impossible to override the property itself on iOS, it should be noted that changing the "title" property of the <video> element in JavaScript

I've achieved this behaviour with

var control = ...; //Create video DOM control
control.title = "Desired title";
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!