UICollectionViewCell复用时修改子页面属性出现混乱的解决方法

来源:互联网 发布:java ant.jar下载 编辑:程序博客网 时间:2024/05/20 03:46


这个方法就是给每一个cell一个唯一的标识符,正常情况下重用cell,给cell的一些子视图赋值时不会发生cell重用混乱问题,但是在修改cell子视图的属性的时候就会发生cell复用的混乱。下面是代码片段

[objc] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. // 每次先从字典中根据IndexPath取出唯一标识符,避免复用  
  2. NSString *identifier = [_cellDic objectForKey:[NSString stringWithFormat:@"%@", indexPath]];  
  3. // 如果取出的唯一标示符不存在,则初始化唯一标示符,并将其存入字典中,对应唯一标示符注册Cell  
  4. if (identifier == nil) {  
  5.       identifier = [NSString stringWithFormat:@"KeyboardTextCell%@", [NSString stringWithFormat:@"%@", indexPath]];  
  6.       [_cellDic setValue:identifier forKey:[NSString stringWithFormat:@"%@", indexPath]];  
  7.       // 注册Cell  
  8.       [self.keyboardView registerClass:[KeyboardTextCell class forCellWithReuseIdentifier:identifier];  
[objc] view plain copy
 print?在CODE上查看代码片派生到我的代码片
  1. }  
  2.               
  3.  KeyboardTextCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];  
  4.               
  5.  cell.textLab.text = self.characterArr[indexPath.row];  
  6.  return cell;  
0 0
原创粉丝点击