UITableView cells cannot be selected
Try:
- (void)tableView:(UITableView *)tv didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[tv deselectRowAtIndexPath:indexPath animated:YES];
}
I know this question has been posted long time ago but here is my answer for whom still stuck with this one:
tableView.allowsSelectionDuringEditing = YES;