删除表视图细胞在左侧
答
[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];
感谢它为我工作 – dev 2012-02-09 07:52:17