bvogelzang / BVReorderTableView

Easy Long Press Reordering for UITableView
MIT License
234 stars 59 forks source link

Cancel Edits before dragging #14

Open SwiftArchitect opened 11 years ago

SwiftArchitect commented 11 years ago

Fantastic library! Cells can currently be dragged in UITableViewCellEditingStyleDelete mode. self editing

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.