UITableView 刷新指定行

2023-02-25 15:10:16 浏览数 (1)

// 一个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 相同

0 人点赞