Open SwiftArchitect opened 11 years ago
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.
Fantastic library! Cells can currently be dragged in UITableViewCellEditingStyleDelete mode.
Add
somewhere in
It takes care of it. Much thanks.