在我的应用中,我需要在WKWebView
中获取网页的高度。所以我使用下面的代码。
webView.evaluateJavaScript(("document.height"), completionHandler: { contentHeight,error in
print(contentHeight)
})
在iOS 9之前,这会正确返回网页高度。但在iOS 10中,contentHeight
始终为nil
。
我已经设置了
webView.scrollView.scrollEnabled = false
,网络视图位于UITableViewCell
。
webView
和UITableViewCell
的高度是可变的。 Web视图上有一个顶部和底部约束以适合单元格。
当我获得网页高度时,我希望它反映在单元格的高度上。
答案 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);
})