2

I have a UITableView. If you touch a row, and then slide your finger left or right, it seems to block any further UITouch events from being recognized.

I have 2 tableviews. I want to be able to slide a row from the right tableview to the left, and as I'm dragging I want to still be able to scroll around on the left tableview view to decide where to drop the row from the right tableview. But as soon as I drag the row to the left, no more touch events are recognized.

Any ideas?

Thanks!

Wise Shepherd
  • 2,228
  • 4
  • 31
  • 43

1 Answers1

0

UITableView has some built in gesture recognition stuff that might be fighting with you.

Did you implement tableView:commitEditingStyle:forRowAtIndexPath: in your data source? If so, its consuming your swipe gesture for the built in row-deletion stuff. See Apple's Documentation: tableView:commitEditingStyle:forRowAtIndexPath:

MechEthan
  • 5,703
  • 1
  • 35
  • 30