标签:set nsarray tab dexp adr col automatic pat for
在开发中,有时候,我们不需要刷新整个表,只需要刷新局部数据即可,具体代码如下:
//section刷新 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2]; [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; //cell刷新 NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0]; [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
这里仅做记录!
标签:set nsarray tab dexp adr col automatic pat for
原文地址:https://www.cnblogs.com/hero11223/p/9100322.html