選択した表のセルにチェックマークを追加すると、他のセルにもチェックが表示されます。
私の 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 には予期される結果があり、1 つの選択のみが表示されます。
何か案は?他のコードを表示する必要がありますか?
ありがとう