我正在使用Xcode7.3.1
。我将CollectionView
从对象库添加到xib
文件,然后在CollectionViewCell
下找不到CollectionView
。此处附有截屏。此屏幕截图显示CollectionView
仅包含CollectionViewFlowLayout
。请帮我解决此问题。
答案 0 :(得分:0)
原型单元格(UITableviewCell
和UICollectionViewCell
)仅在故事板中提供。
如果要将xib用于自定义单元格,请为每个原型单元格创建单独的xib。将自定义类和标识符分配给该单元格。
现在,您需要注册该自定义xib才能在Collection View中使用它。
[self.collectionView registerNib:[UINib nibWithNibName:@"MediaCollectionViewCell" bundle:nil] forCellWithReuseIdentifier:@"MediaCollectionViewCell"];
答案 1 :(得分:0)