美文网首页
iOS tableView ,collectionView 刷新

iOS tableView ,collectionView 刷新

作者: 奔跑吧小蚂蚁 | 来源:发表于2020-01-13 18:20 被阅读0次

NSIndexSet *IndexSet=[[NSIndexSet alloc]initWithIndex:0];
[self.tableView reloadSections:IndexSet withRowAnimation:UITableViewRowAnimationNone];

NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:1];
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];

相关文章

网友评论

      本文标题:iOS tableView ,collectionView 刷新

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