首页 > 学院 > 开发设计 > 正文

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

2019-11-09 18:41:46
字体:
来源:转载
供稿:网友

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

[objc] view plain copy PRint?在CODE上查看代码片// 每次先从字典中根据IndexPath取出唯一标识符,避免复用  NSString *identifier = [_cellDic objectForKey:[NSString stringWithFormat:@"%@", indexPath]];  // 如果取出的唯一标示符不存在,则初始化唯一标示符,并将其存入字典中,对应唯一标示符注册Cell  if (identifier == nil) {        identifier = [NSString stringWithFormat:@"KeyboardTextCell%@", [NSString stringWithFormat:@"%@", indexPath]];        [_cellDic setValue:identifier forKey:[NSString stringWithFormat:@"%@", indexPath]];        // 注册Cell        [self.keyboardView registerClass:[KeyboardTextCell class]  forCellWithReuseIdentifier:identifier];  [objc] view%20plain copy print?派生到我的代码片}                 KeyboardTextCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];                 cell.textLab.text = self.characterArr[indexPath.row];   return cell;  
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表