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

来源:互联网 发布:linux dhcp安装包下载 编辑:程序博客网 时间:2024/06/05 19:04
第一种:得到内容的实际高度:
- (void)webViewDidFinishLoad:(UIWebView*)wb{
   CGFloat documentWidth = [[wb stringByEvaluatingJavaScriptFromString:@"document.getElementById('content').offsetWidth"] floatValue];

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

    NSLog(@"documentSize = {%f, %f}", documentWidth, documentHeight);
    
}
}
第二种:得到了将内容显示完整后的webView的尺寸(包含UIEdgeInsets)
- (void)webViewDidFinishLoad:(UIWebView*)wb{
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;

}

1 0
原创粉丝点击