iOS10 WKWebview - evaluateJavaScript(“document.height”)返回nil

时间:2016-09-18 02:47:13

标签: ios cocoa-touch wkwebview

在我的应用中,我需要在WKWebView中获取网页的高度。所以我使用下面的代码。

webView.evaluateJavaScript(("document.height"), completionHandler: { contentHeight,error in
    print(contentHeight)
})

在iOS 9之前,这会正确返回网页高度。但在iOS 10中,contentHeight始终为nil

我已经设置了

webView.scrollView.scrollEnabled = false

,网络视图位于UITableViewCell

webViewUITableViewCell的高度是可变的。 Web视图上有一个顶部和底部约束以适合单元格。

当我获得网页高度时,我希望它反映在单元格的高度上。

2 个答案:

答案 0 :(得分:8)

试试这个:

let javascriptString = "" +
            "var body = document.body;" +
            "var html = document.documentElement;" +
            "Math.max(" +
            "   body.scrollHeight," +
            "   body.offsetHeight," +
            "   html.clientHeight," +
            "   html.offsetHeight" +
        ");"

    webView.evaluateJavaScript(javascriptString) { (result, error) in
        if error == nil {
            if let result = result, let height = JSON(result).int {
                self.htmlContentHeight = CGFloat(height)
                self.resetContentCell()
            }
        }
    }

PS。 WKWebiew渲染问题: WKWebView not rendering correctly in iOS 10

答案 1 :(得分:0)

您可以尝试使用

webView.evaluateJavaScript(("document.body.offsetHeight"), completionHandler:^(id _Nullable result, NSError * _Nullable error) {
    NSLog(@">>>%@",result);
})