Reputation: 751
I have UITableView with custom cells, when i tap more than one finger on cells (2 finger on two cells), it check both. Can i disable multitouch on table?
I tried
tableView.allowsMultipleSelection = NO;
and
tableView.multipleTouchEnabled = NO;
and
cell.exclusiveTouch = YES
;
But nothing work.
Please help me to find out solution.
Upvotes: 3
Views: 2321
Reputation: 751
It helps me-
cell.contentView.exclusiveTouch = YES;
cell.exclusiveTouch = YES;
I see answer here - setting exclusiveTouch to custom UITableViewCell
Upvotes: 1