如何在左侧没有红色默认删除按钮的情况下删除表格视图的单元格(对另一个按钮执行删除操作)所以任何人都可以帮助我
答案 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];