Cannot disable multi touch on Uitable View (ios7)

后端 未结 3 1769
有刺的猬
有刺的猬 2021-01-26 17:35

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

相关标签:
3条回答
  • 2021-01-26 18:13

    after many tries, I find out that I need to add the follow code at the end of didSelectRowAtIndexPath:

    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    
    0 讨论(0)
  • 2021-01-26 18:24

    @try this

    [cell setExclusiveTouch:YES]
    
    0 讨论(0)
  • 2021-01-26 18:27

    Try this, it helps me!

    cell.contentView.exclusiveTouch = YES;
    cell.exclusiveTouch = YES;
    
    0 讨论(0)
提交回复
热议问题