Блокировщик всплывающих окон WKWebView при открытии ссылки Twitch.tv - PullRequest
0 голосов
/ 05 мая 2020

В моем веб-просмотре есть кнопка для входа в чат Twitch. При нажатии появляется сообщение, пожалуйста, отключите блокировку всплывающих окон и попробуйте еще раз. У меня включен JavaScript и включен javascriptcanopenwindowsautomaticall.

 override func viewDidLoad() {
    super.viewDidLoad()
    let refreshControl = UIRefreshControl()
    refreshControl.addTarget(self, action: #selector(refreshWebView(_:)), for: UIControl.Event.valueChanged)
    webview.scrollView.addSubview(refreshControl)
    webview.scrollView.bounces = true
     webview.configuration.preferences.javaScriptEnabled = true
    webview.configuration.preferences.javaScriptCanOpenWindowsAutomatically = true
    webview.configuration.allowsInlineMediaPlayback = true


    webview.load(URLRequest(url: URL(string: "https://www.greasygamer.com")!))

}
...