美文网首页
2018-04-11 ---> iOS TableView

2018-04-11 ---> iOS TableView

作者: 破夕_____________ | 来源:发表于2018-04-11 15:36 被阅读58次
//一个section刷新    

NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:1]; //你需要更新的组数   

[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];  //collection 相同  

//一个cell刷新    

NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];  //你需要更新的组数中的cell  

[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone]; //collection 相同

相关文章

网友评论

      本文标题:2018-04-11 ---> iOS TableView

      本文链接:https://www.haomeiwen.com/subject/qrqzhftx.html