iOS关于tableview删除cell的要点

这个是个人在工作中遇到的问题 没有什么课分享的 只是单纯的记录下来


- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath

{

return YES;

}

-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath

{

return  UITableViewCellEditingStyleDelete;

}

/*改变删除按钮的title*/

-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath

{

return @"删除";

}

/*删除用到的函数*/

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{

UIAlertController * alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"是否删除" preferredStyle:UIAlertControllerStyleActionSheet];

UIAlertAction * cancel = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {

NSLog(@"=============%@",self.personList);

// 删除模型

[self.personList removeObjectAtIndex:indexPath.row];

// 刷新

[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];

}];

[alert addAction:cancel];

[self presentViewController:alert animated:YES completion:nil];

}

在这里要注意的是 在模型的赋值里面  要改一下改成如图所示  

iOS关于tableview删除cell的要点_第1张图片

你可能感兴趣的:(iOS关于tableview删除cell的要点)