尝试注册一个不是 UICollectionViewCell 子类的单元类。嗯?

Posted

技术标签:

【中文标题】尝试注册一个不是 UICollectionViewCell 子类的单元类。嗯?【英文标题】:Attempt to register a cell class which is not a subclass of UICollectionViewCell. Huh? 【发布时间】:2014-12-01 08:08:24 【问题描述】:

我正在尝试使用 sections 创建我的第一个 UICollectionView。

场景: 带有 UICollectionView 成员的 UIViewController。

目标: 同时注册 UICollectionViewCell 和 UICollectionReusableView(标题)单元格。

问题:我收到一个运行时错误,标头不是 UICollectionReusableView。

@IBOutlet weak var gCollectionView: UICollectionView!
@IBOutlet weak var headerView: UICollectionReusableView!


override func viewDidLoad() 
// Cell:
gCollectionView.registerClass(MyCollectionViewCell.self, forCellWithReuseIdentifier: kCellID)


// Header:
gCollectionView.registerClass(UICollectionReusableView.self, forCellWithReuseIdentifier: kHeaderID)

...reason: '尝试注册一个不是子类的单元类 UICollectionViewCell (UICollectionReusableView)'

问题:我在这里看不到任何问题,标题被视为单元格,但它被标记为不是真正的 UICollectionReusableView。为什么?


当我注释掉注册时:
 override func viewDidLoad() 
        // Cell:
    //    gCollectionView.registerClass(MyCollectionViewCell.self, forCellWithReuseIdentifier: kCellID)


        // Header:
 //       gCollectionView.registerClass(UICollectionReusableView.self, forCellWithReuseIdentifier: kHeaderID)

    

...我的应用程序(减去尚未编码的标题)工作。 --- 我不需要注册小区吗?

【问题讨论】:

【参考方案1】:

如果原型是在InterfaceBuilder中设计的,则无需注册类。只需在那里给它一个重用标识符。

【讨论】:

非常感谢....我一直在努力加载自定义单元格内容。【参考方案2】:

我也收到了这个错误:

Thread 1: Exception: "attempt to register a cell class which is not a subclass of UICollectionViewCell (UICollectionView)"

这是我的收藏视图在损坏时的样子:

fileprivate let collectionView: UICollectionView = 
        let layout = UICollectionViewFlowLayout()
        let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
        cv.translatesAutoresizingMaskIntoConstraints = false
        cv.register(UICollectionView.self, forCellWithReuseIdentifier: "cell")

        return cv
    ()

我的收藏视图有一个小问题,我将其更改为这个并编译:

fileprivate let collectionView: UICollectionView = 
        let layout = UICollectionViewFlowLayout()
        let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
        cv.translatesAutoresizingMaskIntoConstraints = false
        cv.register(UICollectionViewCell.self, forCellWithReuseIdentifier: "cell")

        return cv
    ()

请注意我的错误所在的小变化:

我有 UICollectionView.self 相反,它应该是 UICollectionViewCell.self

【讨论】:

以上是关于尝试注册一个不是 UICollectionViewCell 子类的单元类。嗯?的主要内容,如果未能解决你的问题,请参考以下文章

UICollectionView 未注册单元格

如何检测最后一个单元格是不是在 UICollectionView 中可见?

UICollectionView 项目间距不是恒定的

显示黑屏而不是 UICollectionView

UICollectionView 单元格垂直排列而不是网格

在 UICollectionView 中注册多个单元格(swift 3)