删除左侧没有红色默认删除按钮的表格视图单元格

时间:2012-02-08 18:26:22

标签: ios uitableview

如何在左侧没有红色默认删除按钮的情况下删除表格视图的单元格(对另一个按钮执行删除操作)所以任何人都可以帮助我

1 个答案:

答案 0 :(得分:1)

[listTableView beginUpdates];
[listTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:rowNumber inSection:0]]
                     withRowAnimation:UITableViewRowAnimationLeft]; // there are a few other animations, check out the enum
// Remove the cell's contents from your data source, for example:
// [contentsArray removeObjectAtIndex:rowNumber];
[listTableView endUpdates];