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


这个方法就是给每一个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;  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值