3

私のtableViewでは、一部のセルで、セルcontentViewのサブビューとしてimageViewを追加しました。tableViewを上下にスクロールすると、他のセルにも複製されているこれらの画像が表示されます。しかし、この問題は常に発生するとは限りません。解決策を提案してください。私は次のコードを使用しています。

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) 
{
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];

    if (friendsArray.count != 0)
    {
        NSString *str = [friendsIdArray objectAtIndex:indexPath.row];
        if ([pendingRequests containsObject:str])
        {
            // Add image for pending item
            UIImageView *pendImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pendng.png"]];
            pendImage.frame = CGRectMake(220.0, 2.5, 70, 40);
            pendImage.tag = indexPath.row;   
            [cell.contentView addSubview:pendImage];
        }
    }

}

NSString *object;

if (friendsArray.count == 0)
{
    if ([cell.contentView viewWithTag:indexPath.row]) 
    {
        for (UIView *subview in [cell.contentView subviews]) 
        {
            [subview removeFromSuperview];
        }
    }

    object = @"No friends added to the list";
    cell.textLabel.textAlignment = UITextAlignmentCenter;
}
else 
{
    object = [friendsArray objectAtIndex:indexPath.row];
    cell.textLabel.textAlignment = UITextAlignmentLeft;

    if (![cell.contentView viewWithTag:indexPath.row]) 
    {
        NSString *str = [friendsIdArray objectAtIndex:indexPath.row];
        if ([pendingRequests containsObject:str])
        {
            // Add image for pending item
            UIImageView *pendImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pendng.png"]];
            pendImage.frame = CGRectMake(220.0, 2.5, 70, 40);
            pendImage.tag = indexPath.row;   
            [cell.contentView addSubview:pendImage];
        }
    }
}
4

3 に答える 3

10

問題は解決しました。新しいtableViewCellを作成するelseケース内で次の行を使用しました。

[cell.contentView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];

以下に示すようにコードを編集しました。

if (cell == nil) 
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
    }
    else
    {
        [cell.contentView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];
    }
于 2012-10-19T09:00:39.767 に答える
0

以下のコードを試してください..

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) 
{
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    [cell setSelectionStyle:UITableViewCellSelectionStyleNone];

    if (friendsArray.count != 0)
    {
        NSString *str = [friendsIdArray objectAtIndex:indexPath.row];
        if ([pendingRequests containsObject:str])
        {
            // Add image for pending item
            UIImageView *pendImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pendng.png"]];
            pendImage.frame = CGRectMake(220.0, 2.5, 70, 40);
            pendImage.tag = indexPath.row;   
            [cell.contentView addSubview:pendImage];
        }
    }


    NSString *object;

    if (friendsArray.count == 0)
    {
       if ([cell.contentView viewWithTag:indexPath.row]) 
       {
          for (UIView *subview in [cell.contentView subviews]) 
          {
             [subview removeFromSuperview];
          }
       }

        object = @"No friends added to the list";
        cell.textLabel.textAlignment = UITextAlignmentCenter;
    }
    else 
    {
       object = [friendsArray objectAtIndex:indexPath.row];
       cell.textLabel.textAlignment = UITextAlignmentLeft;

       if (![cell.contentView viewWithTag:indexPath.row]) 
       {
          NSString *str = [friendsIdArray objectAtIndex:indexPath.row];
          if ([pendingRequests containsObject:str])
          {
             // Add image for pending item
             UIImageView *pendImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pendng.png"]];
             pendImage.frame = CGRectMake(220.0, 2.5, 70, 40);
             pendImage.tag = indexPath.row;   
             [cell.contentView addSubview:pendImage];
          }
     }
  }
}
于 2012-10-17T12:35:49.593 に答える
0

Romit Mewada が提案したように、それを使用できますが、 alloc & add new するたびにUIImageView

その代わりに、その画像に nil を送ることができますUIImageView

このように実装します。

if (cell == nil)
{
    //get your cell or alloc & initialize
    // create and add imageView
}

UIImageView* imageView = [cell.contentView viewWithTag:indexPath.row];
imageView.image = nil;
//do your other task, you can use the same imageView to add other image for other row.
于 2012-10-17T12:42:42.903 に答える