向选定的表格单元格添加复选标记时,我看到复选标记也出现在其他单元格中。
我的 didSelectRowAtIndexPathCode 是:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
PFObject *player = [squadListArray objectAtIndex:indexPath.row];
NSString *playerName = [player valueForKey:@"fullName"];
NSLog(@"%@", playerName);
UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
selectedCell.accessoryType = UITableViewCellAccessoryCheckmark;
}
NSLog 有预期的结果,只显示一个选择。
有任何想法吗?您需要我显示任何其他代码吗?
谢谢