搜索后表视图单元格图像发生变化

时间:2012-10-31 10:04:23

标签: iphone objective-c xcode uitableview

我正在处理包含附件视图上的不同图像的表视图单元格以及每个单元格左侧的数据(文本)。最初所有单元格都被其相关数据和图像占用。但是当我在searchdisplaycontroller上搜索时,图像是在新数组中分配。 对于前;我有表格视图行包含火车,公共汽车,飞机的图像与各自的文本。但是当我搜索巴士时,文本显示正常,但imageview显示不相关的图像(说火车的图像)。 实现上述要求的逻辑可能是什么。我使用以下代码来配置单元格

- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath 
{
    btnImage = [[UIButton buttonWithType:UIButtonTypeCustom]retain];
    btnImage.frame = CGRectMake(688, 0, 80, 80);
    [btnImage setBackgroundImage:[arrImages objectAtIndex:indexPath.row] forState:UIControlStateNormal];
    [btnImage addTarget:nil action:@selector(DishImageClicked:) forControlEvents:UIControlEventTouchUpInside];
    [cell addSubview:btnImage];
    btnImage.tag = indexPath.row;
    NSLog(@"image clicked at index :%i",btnImage.tag);

}



// Customize the appearance of table view cells.

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

    static NSString *strCellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:strCellIdentifier];
    if (cell == nil) 
    {
        cell = [[[UITableViewCell alloc] 
                 initWithStyle:UITableViewCellStyleDefault 
                 reuseIdentifier:strCellIdentifier] autorelease];

        //cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }
    // assign text for the table view 
    if (tableView == self.searchDisplayController.searchResultsTableView)
    {

        cell.textLabel.text = [arrSearhResults objectAtIndex:indexPath.row];
        cell.textLabel.font = [UIFont boldSystemFontOfSize:14];

        [self configureCell:cell atIndexPath:indexPath];

    }

    else      
    {
        // add image button 
        [self configureCell:cell atIndexPath:indexPath];
        cell.textLabel.text = [self.arrAllItems objectAtIndex:indexPath.row];
        cell.textLabel.font = [UIFont boldSystemFontOfSize:14];
             }
    return cell;
}

1 个答案:

答案 0 :(得分:1)

这是因为单元格被重用,您需要在满足条件if (tableView == self.searchDisplayController.searchResultsTableView)时清除内容。

如果您可以参考图像视图或单元格内的按钮,只需清除图像。