我遵循了教程:http://ashfurrow.com/blog/putting-a-uicollectionview-in-a-uitableviewcell/在UITableViewCell内实现UICollectionView。如何在不使用情节提要的情况下以编程方式在UICollectionView内部实现自定义UICollectionViewCell?我只需要在UICollectionViewCell中使用一个简单的UILabel。任何帮助将不胜感激。
最佳答案
创建一个自定义的UICollectionViewCell
,将其命名为CustomCell
,并实现方法initWithFrame
,您可以在其中将UILabel
添加到单元格中。
注册您的自定义UICollectionViewCell
[self.collectionView registerClass:[CustomCell class] forCellWithReuseIdentifier:CollectionViewCellIdentifier];
使cellForItemAtIndexPath
中的单元出队CustomCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CollectionViewCellIdentifier forIndexPath:indexPath];
关于ios - 在UITableViewCell内的UICollectionView内以编程方式自定义UICollectionViewCell,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33402322/