iOS中精确计算WebView高度的方法示例
前言
在开发app的过程中难免会遇到将webview加载到tableview的cell上的需求,一般遇到这种问题,通常想到的思路就是在webview的回调方法webviewdidfinishload中获取到webview的高度,刷新tableview,将高度赋值给tableview的回调方法heightforrow。看似没有任何问题,但是在实际操作的时候却发现得到的高度并不是webview的实际高度,显然这种方法是行不通的。其实并不是方法不行,而是webviewdidfinishload代理方法被调用时,页面并不一定完全展现完成,可能有图片还未加载出来,导致此时获取的高度是并不是最终高度,过会儿图片加载出来后,浏览器会重新排版,而我们在这之前给了一个错误高度,导致显示异常。既然这种方法行不通,那么到底如何才能准确计算webview的高度呢?
答案是监听,具体的实现过程如下:
给webview的scrollview的contentsize属性添加监听,每当内容发生变化,contentsize一定会跟着变,捕获这个变动,在监听方法中实现webviewdidfinishload中的代码,也就是获取最新的内容高度赋给webview:
//添加监听 [_webview.scrollview addobserver:self forkeypath:@"contentsize" options:nskeyvalueobservingoptionnew | nskeyvalueobservingoptionold context:@"wejinwuliuviewcontroller"];
//监听回调 - (void)observevalueforkeypath:(nsstring *)keypath ofobject:(id)object change:(nsdictionary<nskeyvaluechangekey,id> *)change context:(void *)context{ if ([keypath isequaltostring:@"contentsize"]) { _webviewheight = [_webview.scrollview contentsize].height; cgrect newframe = _webview.frame; newframe.size.height = _webviewheight; _webview.frame = newframe; } }
ios开发之解决webview自适应内容高度
首先如果直接进行内容展示,或者进行sizetofit的操作,那么可能会造成图片超过屏幕大小,字体变得很小的结果,所以这里用到了uiwebview的delegate方法和添加了html的标签语言,使用了javascript操作方法。具体可以研究代码,如下:
//web -(uiwebview *)detailwebview { if (_detailwebview == nil) { _detailwebview = [uiwebview new]; _detailwebview.delegate = self; _detailwebview.scrollview.bounces = no; _detailwebview.scrollview.showshorizontalscrollindicator = no; _detailwebview.scrollview.scrollenabled = no; _detailwebview.datadetectortypes = uidatadetectortypeall; [_detailwebview sizetofit]; } return _detailwebview; }
nsstring *htmlcontent = [nsstring stringwithformat:@"<head><style>img{max-width:%fpx !important;}</style></head><div id=\"webview_content_wrapper\">%@</div>",f_device_w-30,detaildic[@"content"]]; [_detailwebview loadhtmlstring:htmlcontent baseurl:nil];
#pragma mark ----- webview 的 delegate - (void)webviewdidfinishload:(uiwebview *)webview { //获取页面高度(像素) nsstring * clientheight_str = [webview stringbyevaluatingjavascriptfromstring: @"document.body.offsetheight"]; float clientheight = [clientheight_str floatvalue]; //设置到webview上 webview.frame = cgrectmake(15, _wherenewslabel.bottom+10, f_device_w-30, clientheight); //下面这样写就是获取到比较准确的内容高度,不需要再进行其他计算了 //获取内容实际高度(像素) nsstring * height_str= [webview stringbyevaluatingjavascriptfromstring: @"document.getelementbyid('webview_content_wrapper').offsetheight + parseint(window.getcomputedstyle(document.getelementsbytagname('body')[0]).getpropertyvalue('margin-top')) + parseint(window.getcomputedstyle(document.getelementsbytagname('body')[0]).getpropertyvalue('margin-bottom'))"]; float height = [height_str floatvalue]; //再次设置webview高度(点) webview.frame = cgrectmake(15, _wherenewslabel.bottom+10, f_device_w-30, height); if ([self.delegate respondstoselector:@selector(backwebviewwithheight:)]) { [self.delegate backwebviewwithheight:webview.bottom+5]; } }
有写代码是我项目中使用的,没有必要用,大家可以根据自己的需要修改,必要的代码上面都有
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。