gpt4 book ai didi

ios - dequeueReusableCellWithReuseIdentifier 创建一个没有 subview 的单元格

转载 作者:行者123 更新时间:2023-11-29 12:50:59 25 4
gpt4 key购买 nike

我创建了一个 UICollectionViewCell 的子类 with a .xib,并且在

- (CategoryViewCollectionCell *)collectionView:(UICollectionView *)cv cellForItemAtIndexPath:(NSIndexPath *)indexPath {

CategoryViewCollectionCell *cell =
[cv dequeueReusableCellWithReuseIdentifier:@"CategoryViewCollectionCell"
forIndexPath:indexPath];

.....
}

该单元格是一个具有所有属性的有效 CategoryViewCollectionCell,但它们都是 nil。

最佳答案

这是单元格第一次出队时的预期行为。在此方法的以下几行中,您应该采取措施根据索引路径将 CategoryViewCollectionCell 对象的属性设置为适当的值。

如果您使用 xib 来设计您的自定义单元格,请确保在实例化 Collection View 后使用 registerNib:forCellWithReuseIdentifier: 注册它,并确保所有必要的 socket 都连接到属性,并确保 xib 中的单元格类与 CategoryViewCollectionCell 匹配。

关于ios - dequeueReusableCellWithReuseIdentifier 创建一个没有 subview 的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22438425/

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