MortimerGoro/MGSwipeTableCell

When you are editing, how to prohibit the cell swipe

fuchenxi opened this issue · 1 comments

When you are editing, how to prohibit the cell swipe

You can do something like this:

-(BOOL) swipeTableCell:(nonnull MGSwipeTableCell*) cell canSwipe:(MGSwipeDirection) direction fromPoint:(CGPoint) point;
{
      return ![tableView isEditing];
}