• iOS: 计算 UIWebView 的内容高度


    先是 html 文件内容

    // index.html
    <html>
    <body>
        <div id="content" contenteditable="false" style="font-family: Helvetica">
            <a href="id:abc" style="text-decoration:none; color:green">
                John
            </a>
            : This is out Rich Text Editing View
        </div>
    </body>
    </html>

    加载 html 文件

    - (void)viewDidLoad
    {
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
        
        NSBundle *mainBundle = [NSBundle mainBundle];
        NSURL *indexFileURL = [mainBundle URLForResource:@"index" withExtension:@"html"];
        [self.webView loadRequest:[NSURLRequest requestWithURL:indexFileURL]];
    }

    计算 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;
    }

    截图:

  • 相关阅读:
    javase程序设计上机作业2
    操作系统课堂笔记——01,操作系统介绍
    javase程序设计上机作业1
    Matlab学习笔记1—MATLAB基础知识
    Matlab学习笔记0—课程导入
    【转】WEB技术发展简史
    leetcode-79-单词搜索(用dfs解决)
    leetcode-78-子集(用bfs解决)
    leetcode-74-搜索二维矩阵
    leetcode-46-全排列
  • 原文地址:https://www.cnblogs.com/ihojin/p/webview-contentheight.html
Copyright © 2020-2023  润新知