BVReorderTableView
BVReorderTableView copied to clipboard
Cancel Edits before dragging
Fantastic library!
Cells can currently be dragged in UITableViewCellEditingStyleDelete mode.
Add
[self setEditing:NO animated:NO];
somewhere in
- (void)longPress:
...
if (gesture.state == UIGestureRecognizerStateBegan) {
...
[cell setHighlighted:NO animated:NO];
[self setEditing:NO animated:NO];
...
}
It takes care of it. Much thanks.