版权声明:本文为博主原创文章,未经博主允许不得转载。
这个方法就是给每一个cell一个唯一的标识符,正常情况下重用cell,给cell的一些子视图赋值时不会发生cell重用混乱问题,但是在修改cell子视图的属性的时候就会发生cell复用的混乱。下面是代码片段
[objc] view plain copy PRint?// 每次先从字典中根据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;新闻热点
疑难解答