标签:weak logs self 刷新 load init sel UI blog
在需要局部刷新的时候,可能出现的问题:
当时采用的局部刷新,第一次刷新没问题,当多次刷新的时候 item 就会消失
NSIndexSet *set =[[NSIndexSet alloc]initWithIndex:1]; [collectionView reloadSections:set];
改为是要使用刷新某个具体的item,放入数组进行刷新就好了
NSIndexPath *path =[NSIndexPath indexPathForRow:1 inSection:0]; [weakSelf.collectionView reloadItemsAtIndexPaths:@[path]];
标签:weak logs self 刷新 load init sel UI blog
原文地址:http://www.cnblogs.com/xingsmile/p/7292024.html