刷新指定cell
//先刷新数据
//然后再刷新cell
[self.tableView beginUpdates];
[self.tableView reloadRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationFade];
[self.tableView endUpdates];
删除指定cell
//先删除数据源
//然后再删除cell
[self.tableView beginUpdates];
[self.tableView deleteRowsAtIndexPaths:@[[NSIndexPath indexPathForRow:0 inSection:0]] withRowAnimation:UITableViewRowAnimationFade];
[self.tableView endUpdates];
省略
//这两句代码可以省略--???
[self.tableView beginUpdates];
[self.tableView endUpdates];
网友评论