蛋疼的cell 重用问题

本文探讨了iOS中TableView的Cell重用机制,详细解释了Cell如何被创建、重用以及在滚动过程中的状态变化。作者强调了在配置重用Cell时需要注意清除旧数据的重要性,并提供了一个通过使用不同标识符来避免重用问题的解决方案。
摘要由CSDN通过智能技术生成

以前也整过tableView ,但从来没被cell 的重用问题搞晕过头,可能是因为写的table太简单了吧。这次是重用各种出问题,以至于都没信心写tableView 了。

首先得弄清楚cell的重用是怎么一回事,TableView的重用机制,为了做到显示和数据分离,IOS tableView的实现并且不是为每个数据项创建一个tableCell。而是只创建屏幕可显示最大个数的cell,然后重复使用这些cell,对cell做单独的显示配置,来达到既不影响显示效果,又能充分节约内容的目的。TableView显示之初,reusableTableCells为空,那么tableView dequeueReusableCellWithIdentifier:CellIdentifier返回nil。开始的cell都是通过[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault

reuseIdentifier:CellIdentifier]来创建,而且cellForRowAtIndexPath只是调用最大显示cell数的次数。


比如:有100条数据,iPhone一屏最多显示10个cell。程序最开始显示TableView的情况是:

 1. 用[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]创建10次cell,并给cell指定同样的重用标识(当然,可以为不同显示类型的cell指定不同的标识)。并且10个cell全部都加入到visiableCells数组,reusableTableCells为空。


 2. 向下拖动tableView,当cell1完全移出屏幕,并且cell11(它也是alloc出来的,原因同上)完全显示出来的时候。cell11加入到visiableCells,cell1移出visiableCells,cell1加入到reusableTableCells。


  3. 接着向下拖动tableView,因为reusableTableCells中已经有值,所以,当需要显示新的cell,cellForRowAtIndexPath再次被调用的时候,tableView dequeueReusableCellWithIdentifier:CellIdentifier,返回cell1。cell1加入到visiableCells,cell1移出reusableTableCells;cell2移出visiableCells,cell2加入到reusableTableCells。之后再需要显示的Cell就可以正常重用了。


  所以整个过程并不难理解,但需要注意正是因为这样的原因:配置Cell的时候一定要注意,对取出的重用的cell做重新赋值,不要遗留老数据。

明白了cell 的重用机制,所以我们在遇到这个问题的时候就有很好的解决办法了,我的解决办法是不同的cell 利用不同的标示符,上代码举例子。





图片上的问题明显都是cell的重用用错了。下面看我的代码如何解决了这一问题。

 int section = indexPath.section;
    int row = indexPath.row;
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (section == 0) {
        
        static NSString *cellfirstID = @"cellfirstID";
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellfirstID];
        if (cell == nil)
        {
            
            cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellfirstID];
            
        }
        if (row == 0)
        {
            
            smallBtn = [UIButton buttonWithTitle:@"小" titleColor:[UIColor lightGrayColor] backgroundColor:[UIColor whiteColor] target:self action:@selector(smallAction:)];
            [smallBtn setBackgroundImage:[UIImage imageNamed:@"bg1_size_img"] forState:UIControlStateNormal];
            [smallBtn setBackgroundImage:[UIImage imageNamed:@"bg2_size_img"] forState:UIControlStateHighlighted];
            [smallBtn setBackgroundImage:[UIImage imageNamed:@"bg2_size_img"] forState:UIControlStateSelected];
            [smallBtn setFrame:CGRectMake(190, 15, 40, 28)];
            [cell addSubview:smallBtn];
            middleBtn = [UIButton buttonWithTitle:@"中" titleColor:[UIColor lightGrayColor] backgroundColor:[UIColor whiteColor] target:self action:@selector(middleAction:)];
            [middleBtn setBackgroundImage:[UIImage imageNamed:@"bg1_size_img"] forState:UIControlStateNormal];
            [middleBtn setFrame:CGRectMake(230, 15, 40, 28)];
            [middleBtn setBackgroundImage:[UIImage imageNamed:@"bg1_size_img"] forState:UIControlStateNormal];
            [middleBtn setBackgroundImage:[UIImage imageNamed:@"bg2_size_img"] forState:UIControlStateHighlighted];
            [middleBtn setBackgroundImage:[UIImage imageNamed:@"bg2_size_img"] forState:UIControlStateSelected];
            [cell addSubview:middleBtn];
            
            bigBtn  = [UIButton buttonWithTitle:@"大" titleColor:[UIColor lightGrayColor] backgroundColor:[UIColor whiteColor] target:self action:@selector(bigAction:)];
            [bigBtn setFrame:CGRectMake(270, 15, 40, 28)];
            [bigBtn setBackgroundImage:[UIImage imageNamed:@"bg1_size_img"] forState:UIControlStateNormal];
            [bigBtn setBackgroundImage:[UIImage imageNamed:@"bg2_size_img"] forState:UIControlStateHighlighted];
            [bigBtn setBackgroundImage:[UIImage imageNamed:@"bg2_size_img"] forState:UIControlStateSelected];
            [cell addSubview:bigBtn];
            cell.textLabel.text = @"字体大小";
        }

else if (section == 1)
        {
            static NSString *cellSecondID = @"cellSecondID";
            UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellSecondID];
            if (cell == nil) {
                
                cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellSecondID];
            }
            if (row == 0) {
                cell.textLabel.text = @"清楚缓存";
            }
            if (row == 1) {
                cell.textLabel.text = @"推荐给朋友";
            }
            if (row == 2) {
                cell.textLabel.text = @"帮助";
            }
            if (row == 3) {
                cell.textLabel.text = @"版本更新";
            }
            if (row == 4) {
                cell.textLabel.text =@"关于我们";
            }
            return cell;
    }
    return cell;

完美解决,如果你有好的解决方案,也可以给我说一下,欢迎交流。





评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值