Skip to content

Instantly share code, notes, and snippets.

@ziggear
Created May 14, 2013 17:31
Show Gist options
  • Save ziggear/5577851 to your computer and use it in GitHub Desktop.
Save ziggear/5577851 to your computer and use it in GitHub Desktop.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *oneCell = [tableView cellForRowAtIndexPath: indexPath];
if (oneCell.accessoryType == UITableViewCellAccessoryNone) {
oneCell.accessoryType = UITableViewCellAccessoryCheckmark;
} else
oneCell.accessoryType = UITableViewCellAccessoryNone;
[tableView deselectRowAtIndexPath:indexPath animated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment