3

我已经尝试了这个类似问题的所有答案来计算 WKWebView 的正确内容高度,但结果高度总是超出在内容末尾下方形成一个长空白区域的实际高度。

我试过的方法:

  1. webView.eveluateJavaScript()
  2. webView.scrollView.contentSize
  3. WKScriptMessageHandler (get the message.body.valueForKey("body"))

这是我尝试加载的 HTML 字符串:

> <html><head><style>img{max-width:100%%;height:auto
> !important;width:auto !important;};</style></head><body
> style='margin:0; padding:0; font-size:[myFontSize];
> font-family:[myFont]; color:[myColor]'>[myHTMLstring]</body></html>

有没有另一种方法来获得 WKWebView 的正确高度?

4

1 回答 1

-1
  1. WKWebView,设置与 self.view.frame 的一致性

2.试试看,

<html>
 <head>
    <style>
       background-color:purple;
    </style>
 </head>
 <body>
 </body>
</html>

```

于 2016-08-19T01:50:22.133 回答