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];
}
开发者_如何学C
But for some reason, the checkmark doesn't appear. Could someone help?
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.
精彩评论