Nubaslon
Nubaslon

Reputation: 751

Multi touch on UITableView with custom cells

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

Answers (1)

Nubaslon
Nubaslon

Reputation: 751

It helps me-

    cell.contentView.exclusiveTouch = YES;
    cell.exclusiveTouch = YES;

I see answer here - setting exclusiveTouch to custom UITableViewCell

Upvotes: 1

Related Questions