美文网首页
iOS关于tableview删除cell的要点

iOS关于tableview删除cell的要点

作者: 路边的风景呢 | 来源:发表于2017-08-02 10:44 被阅读520次

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

- (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的要点

      本文链接:https://www.haomeiwen.com/subject/rbselxtx.html