我childViewController
上有一个UICollectionViewController
。我有我的childViewController出现在屏幕上。但是当我注册一个单元格collectionView?.register(MyCustomCell.self, forCellWithReuseIdentifier: CellId)
并使用numberOfItemsInSection
和cellForItemAt
时。问题是细胞不会出现,我检查了代码,所以这是正确的。它可以是childViewController的东西吗?
答案 0 :(得分:1)
通常不首选将任何子视图或viewController添加到 UICollectionViewController 或 UITableViewController ,因为您会看到非预期的结果,因为它们都继承自 scrollview 并使添加的内容可以滚动或分散在任何地方,如果您有更好的创建自定义viewController与 collectionView 和 childViewController