计算 webView 显示内容后实际高度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算 webView 显示内容后实际高度相关的知识,希望对你有一定的参考价值。

两种方法,方法1可以得到内容的实际高度,方法2得到了将内容显示完整后的 webView 的尺寸(包含 UIEdgeInsets)

- (void)webViewDidFinishLoad:(UIWebView *)wb

{

    //方法1

    CGFloat documentWidth = [[wb stringByEvaluatingjavascriptFromString:@"document.getElementById(‘content‘).offsetWidth"] floatValue];

    CGFloat documentHeight = [[wb stringByEvaluatingJavaScriptFromString:@"document.getElementById(\"content\").offsetHeight;"] floatValue];

    NSLog(@"documentSize = {%f, %f}", documentWidth, documentHeight);

    //方法2

    CGRect frame = wb.frame;

    frame.size.width = 768;

    frame.size.height = 1;

    //    wb.scrollView.scrollEnabled = NO;

    wb.frame = frame;

    frame.size.height = wb.scrollView.contentSize.height;

    NSLog(@"frame = %@", [NSValue valueWithCGRect:frame]);

    wb.frame = frame;

}

以上是关于计算 webView 显示内容后实际高度的主要内容,如果未能解决你的问题,请参考以下文章

在 Fragment 中使用 WebView

Android - 在片段中显示 WebView

获取 WKWebView 的内容高度不正确

片段中的Android webView显示空白页面

在tableview的headerView中添加webView,webView自适应高度

详解Android WebView加载html片段