gpt4 book ai didi

ios - 如何不重用 UIContentViewCell

转载 作者:行者123 更新时间:2023-11-28 22:02:52 24 4
gpt4 key购买 nike

我尝试使用 nil 重用标识符。

  UICollectionViewCell *cell = [self.collectionView dequeueReusableCellWithReuseIdentifier:nil forIndexPath:indexPath];

但是我得到了这个错误:

 'must pass a valid reuse identifier to -[UICollectionView dequeueReusableCellWithReuseIdentifier:forIndexPath:]

最佳答案

如果您不想重用单元格(这是一个非常糟糕的想法,单元格重用是有原因的!),您只需创建单元格:

UICollectionViewCell *cell = [[UICollectionViewCell alloc] init:...];

关于ios - 如何不重用 UIContentViewCell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24688915/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com