gpt4 book ai didi

ios - 以编程方式在 UITableViewCell 内的 UICollectionView 内自定义 UICollectionViewCell

转载 作者:行者123 更新时间:2023-11-28 21:37:19 26 4
gpt4 key购买 nike

我遵循了教程:http://ashfurrow.com/blog/putting-a-uicollectionview-in-a-uitableviewcell/在 UITableViewCell 中实现 UICollectionView。如何在不使用 Storyboard的情况下以编程方式在 UICollectionView 内部实现自定义 UICollectionViewCell?我的 UICollectionViewCell 中只需要一个简单的 UILabel。任何帮助将不胜感激。

最佳答案

  1. 创建一个自定义的UICollectionViewCell,命名为CustomCell,并实现方法initWithFrame,可以在其中添加UILabel 到您的手机。

  2. 注册您的自定义UICollectionViewCell

    [self.collectionView registerClass:[CustomCell class] forCellWithReuseIdentifier:CollectionViewCellIdentifier];

  3. 出列 cellForItemAtIndexPath 中的单元格

    CustomCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CollectionViewCellIdentifier forIndexPath:indexPath];

关于ios - 以编程方式在 UITableViewCell 内的 UICollectionView 内自定义 UICollectionViewCell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33402322/

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