码迷,mamicode.com
首页 > 其他好文 > 详细

UICollctionView 刷新 item 刷新 消失

时间:2017-08-06 00:52:45      阅读:125      评论:0      收藏:0      [点我收藏+]

标签: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]];

 

UICollctionView 刷新 item 刷新 消失

标签:weak   logs   self   刷新   load   init   sel   UI   blog   

原文地址:http://www.cnblogs.com/xingsmile/p/7292024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!