UICollectionViewController的单元格未显示

时间:2018-03-04 18:30:21

标签: ios swift uicollectionview

Xcode 9.2,Swift 4 我在Main.storyboard中有一个CollectionViewController场景,我链接到CollectionVewController类。 在这个场景中有一个单元格,其标识符是TextCell。我直接在Main.storyboard中更改了这个背景颜色。

这是我的CollectionViewControllerClass的代码

import UIKit

private let reuseIdentifier = "TextCell"

class CollectionViewController: UICollectionViewController {
    override func viewDidLoad() {
        super.viewDidLoad()

        // Register cell classes
        self.collectionView!.register(UICollectionViewCell.self, forCellWithReuseIdentifier: reuseIdentifier)

        self.collectionView?.backgroundColor = UIColor(red: 52.0 / 250.0, green: 63.0 / 250.0, blue: 77.0 / 250.0, alpha: 1)
    }

    override func numberOfSections(in collectionView: UICollectionView) -> Int {
        return 1
    }

    override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
        return 12
    }

    override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath)

        // Configure the cell
        return cell
    }
}

我在运行应用程序时看不到任何单元格,有人知道为什么吗?谢谢!

1 个答案:

答案 0 :(得分:2)

删除此行:

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

该行告诉运行时从故事板中获取单元格。但是你想要从故事板中获取单元格,因为那是你改变单元格背景颜色的地方。