1

我有一个 UITableView,每个单元格上有一个标题和一个图像。一些单元格将具有默认图像,而其他单元格则没有。当我滚动表格时,某些行的图像不是预期的,而是显示另一行的图像而不是预期的图像。如果我不使用 dequeuereuseidentifier 一切正常,但我想使用它,因为我有很多单元格。

有什么建议吗?

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyCell"];

    if (cell == nil) {
        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"MyCell"];

        CGRect titleRect = CGRectMake(60, 6, 200, 24);
        UILabel *title = [[UILabel alloc] initWithFrame: titleRect];
        title.tag = 1;
        title.backgroundColor = [UIColor clearColor];
        title.font = [UIFont fontWithName:@"AdelleBasic-Bold" size:15.5];
        [cell.contentView addSubview:title];

        UIImageView *defaultCellImage = [[UIImageView alloc] initWithFrame:CGRectMake(8, 10, 42, 42)];
        defaultCellImage.tag = 2;
        [defaultCellImage setImage:[UIImage imageNamed: @"Default_Row_Image"]];
        [cell.contentView addSubview:defaultCellImage];
    }

    NSUInteger row = [indexPath row];
    Movie *movie = [_movies objectAtIndex: row];

    UILabel *titleRowLabel = (UILabel *) [cell.contentView viewWithTag:1];
    titleRowLabel.text = [movie title];

    UIImageView *cellImage = (UIImageView *) [cell.contentView viewWithTag:2];
    if (![movie.imageName isEqualToString:@""])
        [cellImage setImage:[UIImage imageNamed: [movie imageName]]];

    return cell;
}
4

1 回答 1

2

表格视图中使用的第一个单元格将被正确加载。由于没有要出列的单元格,因此if (cell == nil)将返回YES并且您的单元格将其图像设置为默认值。然后,如果您在该方法后面设置不同图像的条件得到满足,则会显示不同的图像。到现在为止还挺好。

但是,当一个可重用单元出列时,它已经有一个图像集,这可能不是默认值。由于cell == nil现在将返回NO,因此该单元格将永远不会将其图像重置为默认图像,即使它是应该显示的图像。

于 2012-08-03T16:52:00.710 回答