// 一个section刷新
NSIndexSet *indexSet = [[NSIndexSet alloc] initWithIndex:1];
[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; //collection 相同
// 刷新某一行
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:1];
[self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone]; //collection 相同