美文网首页
iOS UITableViewCell嵌套WebView高度自适

iOS UITableViewCell嵌套WebView高度自适

作者: Mr_yinwei | 来源:发表于2018-01-16 14:33 被阅读172次

    最新项目中使用到UITabelViewCell嵌套WKWebView,本以为很简单,其实里面坑的地方实在不少,查找资料网友都是千篇一律,那就只能自己动手研究了,最后想出这个办法算是解决了这个问题,所以记下来,算是自己的储备吧

    Demo

    高度获取思路

    在获取嵌套cell中的webview高度时,查阅资料网友

    • 第一种方法无非是自定义cell,同时在cell中自定义WebView,设置代理,通过JS获取高度,在获取高度之后,设置代理,在控制器中刷新,这里需要注意有可能造成循环刷新
    -(void)webView:(WKWebView *)webView didFinishNavigation:(null\_unspecified WKNavigation *)navigation {
    
       [webView evaluateJavaScript:@"document.body.scrollHeight"
    
      completionHandler:^(id _Nullable result, NSError * _Nullable error) {
          if (!error) {
              NSString *heightStr = [NSString stringWithFormat:@"%@",result];
              CGFloat height=[heightStr floatValue];
          }
    
      }];
    
      }
    
    
    • 由于上面一种在加载html时有可能有图片会造成加载高度不准确可能,所以还有就是KVO监听方法,监听webView的contentOffSet,当高度改变时通知控制去刷新,当然需要设置标志位来判断何时加载完成

    接下来介绍自己的方法

    核心就是到临时的WebView中去获取高度,同时缓存起来,然后刷新特定的cell
    在控制器中设置一个WkWebView,hidden设为YES,同时frame要这是,注意:高度要设置为1,因为如果告诉设置的过于高,在加载html时,内容小于设置的高度,在获取高度时,会按照最大高度去获取。

    NSString *jScript = @"var meta = document.createElement('meta'); meta.setAttribute('name', 'viewport'); meta.setAttribute('content', 'width=device-width'); document.getElementsByTagName('head')[0].appendChild(meta); var imgs = document.getElementsByTagName('img');for (var i in imgs){imgs[i].style.maxWidth='100%';imgs[i].style.height='auto';}";
    
        WKUserScript *wkUScript = [[WKUserScript alloc] initWithSource:jScript injectionTime:WKUserScriptInjectionTimeAtDocumentEnd forMainFrameOnly:YES];
        WKUserContentController *wkUController = [[WKUserContentController alloc] init];
        [wkUController addUserScript:wkUScript];
    
        WKWebViewConfiguration *wkWebConfig = [[WKWebViewConfiguration alloc] init];
        wkWebConfig.userContentController = wkUController;
    
        WKWebView *webKitView = [[WKWebView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 1) configuration:wkWebConfig];
        webKitView.navigationDelegate=self;
        webKitView.scrollView.scrollEnabled=NO;
        self.webKitView=webKitView;
        webKitView.hidden=YES;
    
    

    设置代理获取高度(同第一个代码块),保存到高度缓存的数组中

    至于高度数据,在初始化数据时,设置一个个数和数据源数组个数相同个数的数组,值为初始高度0

    for (int i=0; i<self.arrayData.count; i++) {
            //保持加载页面打开最后一个
            if (i==self.arrayData.count-1) {
                [self.arrayEditingData addObject:@(YES)];
            }else{
                [self.arrayEditingData addObject:@(NO)];
            }
    
            //高度缓存
            [self.arrayWebViewHeightData addObject:@(0)];
        }
    
    

    在自定义cell高度自适应方面,使用ios8出现的cell自适应设置UITableView的

        self.tableView.estimatedRowHeight = 20;//预估高度
        self.tableView.rowHeight = UITableViewAutomaticDimension;
    
    

    在自定义cell中设置数据的set方法中设置控件的约束,使用Mansory,同时在设置约束是,要保证内容控件要撑起整个cell
    iOS8 cell高度自适应知识链接

    设置折叠Cell的实现

    • 设置一个保存是否折叠状态的数组,见for循环代码款,在UITableView的数据源中如下
    -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return self.arrayEditingData.count;
    }
    
    
    -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    {
        int count=0;
        //当为YES是设置Section的row行数,为0时就隐藏了
        if ([self.arrayEditingData[section] boolValue]) {
            count=1;
        }
        return count;
    }
    
    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        //自定义cell
        MaTableViewCell *cell=[MaTableViewCell cellWithTableView:tableView];
        CGFloat weHeight=[self.arrayWebViewHeightData[indexPath.section] floatValue];
        //当有缓存高度是设置数据
        if (weHeight>0) {
            cell.webHeight= weHeight;
            cell.contentHtml=self.arrayData[indexPath.section];
        }
        return cell;
    }
    
    • 设置Section的头部,用于点击,点击头部,改变折叠状态的数组值,刷新改Section
    //组头的高度
    -(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
        return 40;
    }
    
    -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
    {
        UIView *headerView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 0, 0)];
        UILabel *lab=[[UILabel alloc]init];
        lab.text=[NSString stringWithFormat:@"第%ld行的头部",(long)section+1];
        [headerView addSubview:lab];
        [lab mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(headerView).offset(10);
            make.centerY.equalTo(headerView);
        }];
        headerView.backgroundColor=[UIColor colorWithRed:87/ 255.0 green:174/ 255.0 blue:247/ 255.0 alpha:1.0];;
        headerView.tag=section;
        //添加手势,折叠/打开
        UITapGestureRecognizer *tap=[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(headerClick:)];
        [headerView addGestureRecognizer:tap];
        return headerView;
    }
    
    //头部点击事件
    -(void)headerClick:(UITapGestureRecognizer *)tap
    {
        UIView *view=tap.view;
        self.selectIndex=view.tag;
        BOOL close=[self.arrayEditingData[view.tag] boolValue];
        close=!close;
        [self.arrayEditingData replaceObjectAtIndex:view.tag withObject:@(close)];
        NSIndexSet * index = [NSIndexSet indexSetWithIndex:view.tag];
        NSString *contentHtml=self.arrayData[view.tag];
        //判断是否缓存了高度
        CGFloat height=[self.arrayWebViewHeightData[view.tag] floatValue];
        //关闭时直接刷新
        if(!close){
            [self.tableView reloadSections:index withRowAnimation:UITableViewRowAnimationAutomatic];
        }else{
            //打开状态
            if (height==0) {
                //获取高度缓存
                [self.webKitView loadHTMLString:contentHtml baseURL:nil];
            }
            [UIView performWithoutAnimation:^{
                [self.tableView reloadSections:index withRowAnimation:UITableViewRowAnimationNone];
            }];
        }
    }
    

    附上Demo地址

    相关文章

      网友评论

          本文标题:iOS UITableViewCell嵌套WebView高度自适

          本文链接:https://www.haomeiwen.com/subject/ayksoxtx.html