美文网首页
获取网页高度

获取网页高度

作者: 贝勒黑福晋 | 来源:发表于2017-07-12 16:40 被阅读0次

    // MARK: 代理方法 -- WKWebView

    func webView(_ webView: WKWebView, didFinish navigation: WKNavigation!) {

    LTLog("页面加载完成")

    webView.evaluateJavaScript("document.body.offsetHeight") { (result, error) in

    if error == nil {

    var newFrame = webView.frame

    newFrame.size.height = result as! CGFloat

    webView.frame = newFrame

    self.headerView.frame = CGRect(x: 0, y: 0, width: ScreenWidth, height: newFrame.size.height)

    self.wkView.frame = CGRect(x: 0, y: 0, width: ScreenWidth, height: newFrame.size.height)

    LTLog("web高度: \(newFrame.size.height)---headerView高度: \(self.headerView.frame.size.height)")

    self.bigTableView.reloadData()

    }

    }

    }

    相关文章

      网友评论

          本文标题:获取网页高度

          本文链接:https://www.haomeiwen.com/subject/zqibhxtx.html