使用单元格上的滑动操作删除tableview单元格

时间:2009-12-28 09:52:34

标签: objective-c uitableview

是否可以删除带有滑动操作的单元格?

或者还有其他方法吗?

需要建议。

由于

1 个答案:

答案 0 :(得分:3)

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

   if (editingStyle == UITableViewCellEditingStyleDelete) {
     // Remove the cell
   }   
}