1

这是我对 WKWebView 的设置:

func setupWebView() -> WKWebView {
    let configutation = WKWebViewConfiguration()
    configutation.selectionGranularity = .Character
    
    let webView = WKWebView(frame: CGRect(x: 0, y: 20, width: UIScreen.mainScreen().bounds.size.width, height: UIScreen.mainScreen().bounds.size.height),
                              configuration: configutation)
    
    view.addSubview(webView)
    return webView
}

然后用lazy得到:

lazy var webView: WKWebView = self.setupWebView()

设备或模拟器中的相同问题:

在此处输入图像描述

将属性设置为 .Dynamic 似乎效果很好。

在此处输入图像描述

但我不想要选择风格。

在此处输入图像描述

有谁知道如何解决问题?

非常感谢!

4

1 回答 1

0

已知错误,您可能想再次报告它以提高它的优先级:http ://www.openradar.me/23345435

于 2017-06-23T11:34:24.537 回答