我已经阅读了很多帖子,但没有一个回答这个问题。我创建了一个填充玩家姓名列表的表格视图。当用户点击一个名称时,我希望单元格的背景颜色根据它们在循环中的位置更改为红色、黄色或绿色。我不想改变 selectionStyle 颜色。背景颜色的变化将表明每个玩家将在游戏中收到的问题的难度。这是我迄今为止一直在尝试的。当我调试时,我可以看到 didSelectRowAtIndexPath 被击中,但没有任何变化。有任何想法吗?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Player Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.backgroundColor = [UIColor greenColor];
UILabel *playerName = (UILabel *)[cell viewWithTag:PLAYER_NAME];
playerName.backgroundColor = [UIColor redColor];
}