我尝试使用nil
重用标识符。
UICollectionViewCell *cell = [self.collectionView dequeueReusableCellWithReuseIdentifier:nil forIndexPath:indexPath];
然而我收到了这个错误:
'must pass a valid reuse identifier to -[UICollectionView dequeueReusableCellWithReuseIdentifier:forIndexPath:]
答案 0 :(得分:2)
如果你不想重复使用细胞(这是一个非常糟糕的想法,细胞重用是有原因的!),你需要创建细胞:
UICollectionViewCell *cell = [[UICollectionViewCell alloc] init:...];