How to disable slide to delete for a UITableView

前端 未结 2 1054
醉酒成梦
醉酒成梦 2021-01-04 04:36

Does anybody know how to disable the \'slide-to-delete\' in a uitableview?

I still want to be able to delete the rows while the table is in editing mode.

2条回答
  •  梦毁少年i
    2021-01-04 04:43

    Mine is:

    - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath 
    {
       return self.editing ;
    }
    

提交回复
热议问题