UICollctionView 刷新 item 刷新 消失

Posted 会钓鱼的丶猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UICollctionView 刷新 item 刷新 消失相关的知识,希望对你有一定的参考价值。

在需要局部刷新的时候,可能出现的问题:

当时采用的局部刷新,第一次刷新没问题,当多次刷新的时候 item 就会消失

NSIndexSet *set =[[NSIndexSet alloc]initWithIndex:1];
 [collectionView reloadSections:set];

改为是要使用刷新某个具体的item,放入数组进行刷新就好了

NSIndexPath *path =[NSIndexPath indexPathForRow:1 inSection:0];
  [weakSelf.collectionView reloadItemsAtIndexPaths:@[path]];

 

以上是关于UICollctionView 刷新 item 刷新 消失的主要内容,如果未能解决你的问题,请参考以下文章

ListView刷新某一项Item

iOS14意外泄露iPhone高刷开关

修改360抢票的刷新频率+突破8车次限制,太简单了

layer局部刷新用location.reload(); 刷新进首页用window.parent.location.reload();

扼杀 304,Cache-Control: immutable

通过adapter刷新item,或者局部刷新的问题