我有两个不同的 View 需要在 UICollectionView 中实现。我的问题是如何使用 Storyboard 向 UICollectionView 添加两个 UICollectionReusableView?
例如我可以将它添加为源代码:
[self.collectionView registerClass:[HeaderView class] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier"HeaderView"];
Storyboard中还有另一个标题,
但是如何将两个 UICollectionReusableView 添加到 Storyboard 并配置它们。
Best Answer-推荐答案 strong>
将它们拖到文档大纲中:
关于ios - 如何添加几个 UICollectionReusableView,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/26206800/
|