7.tableview 添加左滑删除

原因:

这个很常用,具体需求很多,比如你有很多的订单,可能你想取消一点订单,于是乎。。。

解决:

  • 添加编辑模式
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}
  • 左滑动出现的文字
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return @"删除";
}
  • 删除所做的动作
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 从数据源中删除
    [_data removeObjectAtIndex:indexPath.row];
    // 从列表中删除
       [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
}

要说的话:

删除的时候别忘了,删除model中的数据

你可能感兴趣的:(7.tableview 添加左滑删除)