iOS tableView刷新section或指定的一个cell

2018-12-05  本文已影响0人  frola_

UITableview 刷新某一个cell 或 section

刷新Section

//刷新Section
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2]; 
[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic]; 

刷新一个cell

//刷新一个cell
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0]; 
[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
上一篇下一篇

猜你喜欢

热点阅读