I have an problem that i use custom cell for UITableView
, when I tap more than one finger (2 fingers or more) on my tableview
it had many problems som
after many tries, I find out that I need to add the follow code at the end of didSelectRowAtIndexPath:
[tableView deselectRowAtIndexPath:indexPath animated:YES];
@try this
[cell setExclusiveTouch:YES]
Try this, it helps me!
cell.contentView.exclusiveTouch = YES;
cell.exclusiveTouch = YES;