美文网首页
iOS TableViewCell重用机制避免重复显示问题

iOS TableViewCell重用机制避免重复显示问题

作者: 小旺_running | 来源:发表于2017-11-22 10:48 被阅读0次

    方案一  取消cell的重用机制,通过indexPath来创建cell 将可以解决重复显示问题 不过这样做相对于大数据来说内存就比较吃紧了

    static NSString *CellIdentifier =@"Cell";//通过indexPath创建cell实例 每一个cell都是单独的

    XWCell *cell =[tableView cellForRowAtIndexPath:indexPath];

    //判断为空进行初始化 --(当拉动页面显示超过主页面内容的时候就会重用之前的cell,而不会再次初始化)

    if(!cell) {

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

    }

    return cell;

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

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

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

    XWCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
                if (cell == nil) {
                    cell = [[[NSBundle mainBundle] loadNibNamed:@"XWCell" owner:self options:nil] firstObject];
                }

    return cell;

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

    XWCell *cell = [tableView dequeueReusableCellWithIdentifier:@"XWCell"];
                if (cell == nil) {
                    cell = [[[NSBundle mainBundle] loadNibNamed:@"XWCell" owner:self options:nil] firstObject];
                }
                else//当页面拉动的时候 当cell存在并且最后一个存在 把它进行删除就出来一个独特的cell我们在进行数据配置即可避免
                {
                    while ([cell.contentView.subviews lastObject] != nil)
                    {
                        [(UIView *)[cell.contentView.subviews lastObject] removeFromSuperview];
                    }
                }

    return cell;

    本人常用的是第三种方式

    相关文章

      网友评论

          本文标题:iOS TableViewCell重用机制避免重复显示问题

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