在需要局部刷新的时候,可能出现的问题:
当时采用的局部刷新,第一次刷新没问题,当多次刷新的时候 item 就会消失
NSIndexSet *set =[[NSIndexSet alloc]initWithIndex:1]; [collectionView reloadSections:set];
改为是要使用刷新某个具体的item,放入数组进行刷新就好了
NSIndexPath *path =[NSIndexPath indexPathForRow:1 inSection:0]; [weakSelf.collectionView reloadItemsAtIndexPaths:@[path]];
时间: 2024-11-05 10:53:11