views:

65

answers:

1

I've put in this code:

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

     UITableViewCell * tableCell = [self.tableView cellForRowAtIndexPath:indexPath];

     tableCell.accessoryType = UITableViewCellAccessoryCheckmark;
     [tableView deselectRowAtIndexPath:(NSIndexPath *)indexPath animated:YES];

}

But for some reason, the checkmark doesn't appear. Could someone help?

A: 

Actaully, I figured it out, that's the right way to do it, its just it had a black bg so it was hard to see.

Nathan