滚动时UITableViewCell图像会发生变化

时间:2012-08-03 16:20:33

标签: iphone ios objective-c uitableview

我有一个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;
}

1 个答案:

答案 0 :(得分:2)

将正确加载要在表视图中使用的第一个单元格。由于没有单元格出列,if (cell == nil)将返回YES,您的单元格将其图像设置为默认值。然后,如果稍后在方法中满足设置不同图像的条件,则将显示不同的图像。到目前为止,非常好。

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