是否可以删除带有滑动操作的单元格?
或者还有其他方法吗?
需要建议。
由于
答案 0 :(得分:3)
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Remove the cell
}
}