Ios didSelectRowAtIndexPath选择选定单元格以外的其他单元格

Ios didSelectRowAtIndexPath选择选定单元格以外的其他单元格,ios,uitableview,Ios,Uitableview,在我的代码中,当我在表视图中选择一个单元格时,它也会选择另一个单元格。 谁能帮我一下吗 这是我的代码: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeue

在我的代码中,当我在表视图中选择一个单元格时,它也会选择另一个单元格。 谁能帮我一下吗

这是我的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    // Configure the cell...
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Display recipe in the table cell
    Player *player = [players objectAtIndex:indexPath.row];

    UILabel *playerIdLabel = (UILabel *)[cell viewWithTag:104];
    playerIdLabel.text = player.pid;

    UIImageView *playerImageView = (UIImageView *)[cell viewWithTag:100];
    playerImageView.image = [UIImage imageNamed:player.imageFile];

    UILabel *playerNameLabel = (UILabel *)[cell viewWithTag:101];
    playerNameLabel.text = player.name;

    UILabel *playerDetailLabel = (UILabel *)[cell viewWithTag:102];
    playerDetailLabel.text = player.detail;

    UIButton *playerAddButton = (UIButton *)[cell viewWithTag:103];

    // Assign our own background image for the cell
    UIImage *background = [self cellBackgroundForRowAtIndexPath:indexPath];

    UIImageView *cellBackgroundView = [[UIImageView alloc] initWithImage:background];
    cellBackgroundView.image = background;
    cell.backgroundView = cellBackgroundView;

    return cell;
}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

        UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
        UILabel *playerNameLabel = (UILabel *)[cell viewWithTag:101];
        NSString *playerName = playerNameLabel.text;

        UILabel *playerIdLabel = (UILabel *)[cell viewWithTag:104];
        [playerIdLabel setHidden:NO];
}

为重用标识符设置nil时,请尝试此操作

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:nil];

我认为您可能已经从IB缩小了单元格的大小,并且忘记了使用委托方法设置高度。试试这个

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 
{
    return 30.0;
}
可能重复的