我按照教程:http://ashfurrow.com/blog/putting-a-uicollectionview-in-a-uitableviewcell/在UITableViewCell中实现了一个UICollectionView。如何在不使用故事板的情况下以编程方式在UICollectionView内部实现自定义UICollectionViewCell?我只需要在UICollectionViewCell中使用一个简单的UILabel。任何帮助将不胜感激。
答案 0 :(得分:2)
创建一个名为UICollectionViewCell
的自定义CustomCell
,并实施方法initWithFrame
,您可以在其中向您的单元格添加UILabel
。
注册您的自定义UICollectionViewCell
[self.collectionView registerClass:[CustomCell class] forCellWithReuseIdentifier:CollectionViewCellIdentifier];
在cellForItemAtIndexPath
CustomCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CollectionViewCellIdentifier forIndexPath:indexPath];