I've got a UITableView which I've wired up to be editable.
Tapping and holding causes the "displace" animation to appear (the row being drawn "above" the rest of the table). So far, so good.
But, moving the row any more than about 10 pixels causes the cell to return to its original position, and I can never move any row to any other position.
A breakpoint reveals that -tableView:moveRowAtIndexPath:toIndexPath: is definitely being called, albeit with the same index path as the source and destination rows.
Can any psychic debuggers shed some light on this?
EDIT Some more relevant info:
There's a UILongPressGestureRecognizer on the UITableViewCell, but I've made it skip its usual behaviour while the table view it's contained in is in editing mode.
I suspect this might be something to do with it, as UITableView reordering is also triggered by a long press.