1. 程式人生 > >UICollctionView 刷新 item 刷新 消失

UICollctionView 刷新 item 刷新 消失

elf paths lec ons pat items item 消失 logs

在需要局部刷新的時候,可能出現的問題:

當時采用的局部刷新,第一次刷新沒問題,當多次刷新的時候 item 就會消失

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

改為是要使用刷新某個具體的item,放入數組進行刷新就好了

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

UICollctionView 刷新 item 刷新 消失