swift – 单元格没有出现在UICollectionView中?

swift – 单元格没有出现在UICollectionView中?,第1张

概述我在故事板中有一个UICollectionViewController,它已链接到一个名为XCollectionViewController. swift的文件,该文件是UICollectionViewController的子类. 我的代码如下: super.viewDidLoad() // Register cell classes self.collectionView!.re 我在故事板中有一个UICollectionVIEwController,它已链接到一个名为XCollectionVIEwController. swift的文件,该文件是UICollectionVIEwController的子类.

我的代码如下:

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中?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1041694.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存