单元格没有出现在UICollectionView中?

时间:2015-05-23 16:08:12

标签: swift uicollectionview uicollectionviewcell

我在故事板中有一个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个单元格。有什么问题?

1 个答案:

答案 0 :(得分:8)

只需在viewDidLoad方法中删除此行,即可显示40个单元格。

self.collectionView!.registerClass(UICollectionViewCell.self, forCellWithReuseIdentifier: reuseIdentifier)