1

在我的一个 ViewControllers 中,我添加了一个 tableview 作为子视图。

在这个 tableView 中,我实现了自定义表格视图单元格。

那么,当我们按下删除按钮时,如何从 tableView 中删除自定义的 Table View Cell。

谁能帮我吗..

4

1 回答 1

1

尝试这个,

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
     if (editingStyle == UITableViewCellEditingStyleDelete) 
     {
        [tableView beginUpdates];
        [self.itemTable removeObjectAtIndex:indexPath.row];

        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]    withRowAnimation:UITableViewRowAnimationFade];
        [tableView endUpdates];
}
于 2012-06-12T07:03:16.733 回答