Cannot disable multi touch on Uitable View (ios7)

后端 未结 3 1782
有刺的猬
有刺的猬 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];
    

提交回复
热议问题