解决自定义UITableViewCell在浏览中出现数据行重复的问题

来源:互联网 发布:甲骨文软件多少钱 编辑:程序博客网 时间:2024/06/08 03:11
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath  
{
    NSInteger section = [indexPath section];
    NSInteger row = [indexPath row];
    UITableViewCell *cell;
 
    switch (section)
    {
        case 0:
      //do something.
        case 1:
            cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
            if (cell == nil)
            {
                cell = [[[UITableViewCell alloc] initWithStyle.:UITableViewCellStyleDefault reuseIdentifier:@"Cell"] autorelease];
 
                //Image
                UIImageView *image = [[UIImageView alloc] initWithFrame.:CGRectMake(0.0f, 14.0f, 45.0f, 50.0f)];
                image.backgroundColor = [UIColor clearColor];
                image.image = [UIImage imageNamed:@"folder.png"];
                [cell.contentView addSubview:image];
                [image release];
                //Label
                UILabel *titleLabel = [[UILabel alloc] initWithFrame.:CGRectMake(45.0f, 6.0f, 214.0f, 50.0f)];
                titleLabel.text = (NSString *)[(NSArray *)[self.categoryArray objectAtIndex:1] objectAtIndex:row];
                NSLog(@"%@ -- %d", titleLabel.text, row);
                titleLabel.textAlignment = UITextAlignmentLeft;
                titleLabel.numberOfLines = 3;
                titleLabel.tag = 201;
                titleLabel.font = [UIFont boldSystemFontOfSize:14];
                [cell.contentView addSubview:titleLabel];
                [titleLabel release];
            }
            cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
            break;
    }
 
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    return cell;
}
google了一下,目前已有的解决方案是将

cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
替换成

cell = [tableView cellForRowAtIndexPath:indexPath];


cell = nil;
这们做的目的去掉Cell的重用机制,但是这种方法都会在后台随着表格滚动一直在创建cell,通过上面源代码中Label定义里那句NSLog在控制台输出就可以看到,虽然会自动回收内存,但肯定也会给系统带来不小开销,所以不到万一得以还是不会用的。

还有一种解决方案是自己定义Cell数组,在tableView:tableView cellForRowAtIndexPath:中进设置要显示的cell,这是手工维护cell的一种方式,对大数据量的情况肯定是不适用的,不过也能算得上是一种思路吧,可以参考一下。其代码如下:

//在构造函数里定义cell数组
for(int i = 0; i < 31; i ++)                                                                                      
{                                                                                                                 
    static NSString *MyBookMarkIdentifier = @"CityMangerCell";                                                        
    cityCell[i] = [[CityMangerCell alloc] initWithFrame.:CGRectZero reuseIdentifier:MyBookMarkIdentifier initIndex:i];
}                                                                                                                 
 
//使用它
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{                                                                                                      
    if((0 <= indexPath.row) && (indexPath.row < 31))                                                       
     return cityCell[indexPath.row];                                                                     
    return nil;                                                                                            
}
后来我仔细分析了一下程序,找到了问题所在:

原因是在if (cell == nil)判断内部不应该对其label进行赋值,即不使用这句:

titleLabel.text = (NSString *)[(NSArray *)[self.categoryArray objectAtIndex:1] objectAtIndex:row];
正确的做法应该是在if (cell == nil){}判断后面进行赋值。即

if (cell == nil)                                                                           
{                                                                                          
    ....                                                                                   
}                                                                                          
UILabel *l1 = (UILabel *)[cell.contentView viewWithTag: 201];                              
l1.text = (NSString *)[(NSArray *)[self.categoryArray objectAtIndex:1] objectAtIndex:row];
分析原因如下:
UITableView中被实例化的cell个数由屏高和每个cell的高度决定,因为我的cell高度设置为80,一屏只 能 显示6个Cell(只有6个cell被实例化),也就是只有这6个cell才会执行if (cell == nil){}中的代码,从第6行往后的cell都是重用的这6个cell,也就是说从第7行开始将不会执行if (cell = nil){}中的代码,当UITableView需要绘制第7行cell的时候,会取得第1个cell进行重用,如果我们不把原来第1行cell中的 Label内容进行修改,那么第7行将完全显示第1行中的内容,所以才会在第6行之后开始出现数据重复的情况。
现在我将Label内容设置的代码放到if (cell == nil){}之后,它将会对每一个被重用的cell的Label进行设定,也就不会再出现cell内容重复的现象。
希望这个问题的解决过程会对大家有所帮助。



http://space.doit.com.cn/160461/viewspace-124211.html