When you are editing, how to prohibit the cell swipe
fuchenxi opened this issue · 1 comments
fuchenxi commented
When you are editing, how to prohibit the cell swipe
MortimerGoro commented
You can do something like this:
-(BOOL) swipeTableCell:(nonnull MGSwipeTableCell*) cell canSwipe:(MGSwipeDirection) direction fromPoint:(CGPoint) point;
{
return ![tableView isEditing];
}