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

时间:2015-10-28 21:57:04

标签: ios objective-c uicollectionview uicollectionviewcell

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

1 个答案:

答案 0 :(得分:2)

  1. 创建一个名为UICollectionViewCell的自定义CustomCell,并实施方法initWithFrame,您可以在其中向您的单元格添加UILabel

  2. 注册您的自定义UICollectionViewCell

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

  3. cellForItemAtIndexPath

    中将单元格排队

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