博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
52.tableViewCell重用机制避免重复显示问题
阅读量:5238 次
发布时间:2019-06-14

本文共 3034 字,大约阅读时间需要 10 分钟。

表刷新超出页面显示的内容会重复出现

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    //定义唯一标识

    static NSString *cellId = @"Cell";

    //通过唯一标识创建cell实例

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];

    //判断为空进行初始化 -- (刷动页面超出屏幕的时候就会重用之前的cell,而不会再次初始化)

    if(!cell){

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellId];

    }

    cell.textLabel.text = @"你好!欢迎你";

    return  cell;

}

以下三个方法解决:

1.取消cell的重用机制,通过indexPath来创建cell将可以解决重复出现问题,不过这样做对于大数据来说内存就比较紧张

  

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    //定义唯一标识

    static NSString *cellId = @"Cell";

    //通过indexPath创建cell实例,每个cell都是单独的

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

    //判断为空进行初始化(刷动页面超出屏幕的时候就会重用之前的cell,而不会再次初始化)

    if(!cell){

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellId];

    }

    cell.textLabel.text = @"你好!欢迎你";

    return  cell;

}

2.让每个cell都拥有一个对应的标识 这样做也会让 cell无法重用 所以也就不会重复出现啦  显示内容比较多时内存占用也是比较多的和方法一类似

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    //定义cell 标识  每个cell对应一个自己的标识

    static NSString *cellId = [NSString stringWithFormat:@"cell%ld%ld",indexPath.section,indexPath.row];

    //通过不同标识创建cell实例

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];

    //判断为空进行初始化(刷动页面超出屏幕的时候就会重用之前的cell,而不会再次初始化)

    if(!cell){

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellId];

    }

    cell.textLabel.text = @"你好!欢迎你";

    return  cell;

}

3. 只要最后一个显示的cell内容不为空,然后把它的子视图全部删除,等同于把这个cell单独出来了,然后刷新数据就可以解决重复显示问题

    刷新需要显示新数据的时候,把最后一个cell进行删除,就有可以自定义cell,此方案既可避免重复出现,又重用了cell相对内存管理来说最好的方案,前两者相比比较消耗内存

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    //定义唯一标识

    static NSString *cellId = @"Cell";

    //通过唯一标识创建cell实例

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];

    //判断为空进行初始化(刷动页面超出屏幕的时候就会重用之前的cell,而不会再次初始化)

    if(!cell){

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellId];

    }

    else//当页面拉动的时候 当cell存在并且最后一个存在 把它进行删除就出来一个独特的cell我们再进行数据配置即可避免

             {

                    while ([cell.contentView.subviews lastObject] != nil) {

                            [(UIView *)[cell.contentView.subviews lastObject] removeFromSuperview];

                        }

                }

    cell.textLabel.text = @"你好!欢迎你";

    return  cell;

}

*******************多点了解*************************8

- (UITableViewCell  *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

     static  NSString  *CellIdentiferId = @"MomentsViewControllerCellID";
     UITableViewCell  *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentiferId];
     if (cell == nil) {
        NSArray *nibs = [[NSBundle mainBundle]loadNibNamed:@"MomentsCell" owner:nil options:nil];
        cell = [nibs lastObject];
        cell.backgroundColor = [UIColor clearColor];
        
      };
        
     }
     return cell;

}
严重注意:我们之前这么用都没注意过重用的问题,这样写,如果在xib页面没有设置 重用字符串的话,是不能够被重用的,也就是每次都会重新创建,这是严重浪费内存的

转载于:https://www.cnblogs.com/qiangzheVSruozhe/p/9274714.html

你可能感兴趣的文章
转:基于InfluxDB&Grafana的JMeter实时性能测试数据的监控和展示
查看>>
结对编程博客
查看>>
Kendo MVVM 数据绑定(四) Disabled/Enabled
查看>>
python学习笔记3-列表
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
C++11 生产者消费者
查看>>
IO multiplexing 与 非阻塞网络编程
查看>>
hdu4105  Electric wave
查看>>
基于内容的图片检索CBIR(Content Based Image Retrieval)简介
查看>>
线程androidAndroid ConditionVariable的用法
查看>>
程序电脑VS2008 应用程序配置不正确,未能启动该应用程序。重新安装程序可以修复此问题。解决方法...
查看>>
设置类UIColor使用colorWithRed定义颜色
查看>>
文件语音识别Google语音识别学习札记 - Windows PC机上测试语音识别Strut2教程-java教程...
查看>>
μC/OS-III---I笔记13---中断管理
查看>>
:after,:before,content
查看>>
FTTB FTTC FTTH FTTO FSA
查看>>
OpenAI Gym
查看>>
stap-prep 需要安装那些内核符号
查看>>
网易杭研后台技术中心的博客 -MYSQL :OOM
查看>>