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