实现cell显示一个删除button

Posted liguangsunls

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现cell显示一个删除button相关的知识,希望对你有一定的参考价值。

假设想实现滑动cell时,cell右边就能显示一个删除button,则要实现tableview 下边方法:

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


让一个cell实现滑动出现删除button


我们删除cell。一般调用方法

[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationTop];


下面边的样例做參考:


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

if (editingStyle == UITableViewCellEditingStyleDelete) {


[self.myArray removeObjectAtIndex:[indexPath row]];//删除数据源相应的内容


[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationTop];//删除列表的显示

}

}

以上是关于实现cell显示一个删除button的主要内容,如果未能解决你的问题,请参考以下文章

UITableviewCell上添加button,按钮的normal或selected状态显示不正常的可能原因。

ios 自定义cell中的block的值怎么取

[cell addSubview:button] 和 [cell.contentview addsubview:button] 有啥不同

iOS 15.3+ SwiftUI中List子项目禁止被删除但头部仍显示删除按钮的解决

iOS 15.3+ SwiftUI中List子项目禁止被删除但头部仍显示删除按钮的解决

单击来自Cell的Button获取UITableViewCell的indexPath