我的代码如下:
super.vIEwDIDLoad() // Register cell classes self.collectionVIEw!.registerClass(UICollectionVIEwCell.self,forCellWithReuseIDentifIEr: reuseIDentifIEr)} overrIDe func numberOfSectionsInCollectionVIEw(collectionVIEw: UICollectionVIEw) -> Int { //#warning Incomplete method implementation -- Return the number of sections return 4}overrIDe func collectionVIEw(collectionVIEw: UICollectionVIEw,numberOfItemsInSection section: Int) -> Int { //#warning Incomplete method implementation -- Return the number of items in the section return 10}overrIDe func collectionVIEw(collectionVIEw: UICollectionVIEw,cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionVIEwCell { let cell = collectionVIEw.dequeueReusableCellWithReuseIDentifIEr(reuseIDentifIEr,forIndexPath: indexPath) as! UICollectionVIEwCell // Configure the cell return cell}
我有单元格的重用标识符,因为它在文件中命名.
在运行中,我可以看到CollectionVIEw的背景,但不是我应该看到的40个单元格.怎么了?
只需在vIEwDIDLoad方法中删除此行即可显示您的40个单元格.self.collectionVIEw!.registerClass(UICollectionVIEwCell.self,forCellWithReuseIDentifIEr: reuseIDentifIEr)总结
以上是内存溢出为你收集整理的swift – 单元格没有出现在UICollectionView中?全部内容,希望文章能够帮你解决swift – 单元格没有出现在UICollectionView中?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)