iOS开发之tableView实现左滑删除功能

2022-10-21,,

我们在使用一些应用的时候,在滑动一些联系人的某一行的时候,会出现删除、置顶、更多等等的按钮,下面这篇文章主要就介绍了iOStableView实现左划删除功能的方法,有需要的朋友们可以参考借鉴,下面来一起看看吧。

前言

这几天要实现左划删除的功能,发现网上很多帖子大多出自一人之手,然后都是 copy 的文章,其实都没有那么复杂,只实现一个代理方法就可以了

方法如下

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

 // 删除数据源的数据,self.cellData是你自己的数据
 [self.cellData removeObjectAtIndex:indexPath.row];
 // 删除列表中数据
 [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
 }

}

默认删除的文字为 Delete,要改为中文实现

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
 return @"删除";//默认文字为 Delete
}

下面这两个代理方法不用写也可以,默认就是这样

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
 return UITableViewCellEditingStyleDelete;
}

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
 return YES;
}

如果你报了这个错误:

'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (5) must be equal to the number of rows contained in that section before the update (5), plus or minus the number of rows inserted or deleted from that section (0 inserted, 1 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out)

你把代理方法中这两个方法顺序搞混了,先删除数据,再删除 cell

[self.cellData removeObjectAtIndex:indexPath.row];这个方法在前

[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];这个方法在后

还有就是,别2到没设置代理,tableView.delegate = self;

总结

以上就是关于iOS利用tableView实现左划删除功能的全部内容了,希望本文的内容对给iOS开发者们能有一定的帮助,如果有疑问大家可以留言交流。

您可能感兴趣的文章:

  • iOS应用开发中对UIImage进行截取和缩放的方法详解
  • iOS应用开发中使用UIScrollView控件来实现图片缩放
  • iOS UITableView展开缩放动画实例代码
  • iOS开发中Quartz2D控制圆形缩放和实现刷帧效果
  • iOS实现点击微信头像(放大、缩放、保存)效果
  • iOS tableView实现头部拉伸并改变导航条渐变色
  • iOS App中UITableView左滑出现删除按钮及其cell的重用
  • 解决iOS11刷新tableview会出现漂移的现象
  • IOS实现左右两个TableView联动效果
  • iOS TableView头视图根据偏移量下拉缩放效果

《iOS开发之tableView实现左滑删除功能.doc》

下载本文的Word格式文档,以方便收藏与打印。