0

我正在使用视图并在其中实现一个集合视图

当我尝试引用数据源并委托给我的 colelctionview 时,它会出错

我的类文件

class MenuBar : UIView, UICollectionViewDataSource, UICollectionViewDelegate, UICollectionViewDelegateFlowLayout{

let collectionView : UICollectionView = {

    let layout = UICollectionViewFlowLayout()
    let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
    cv.backgroundColor = UIColor.rgb(red: 230, green: 32, blue: 31)
    cv.delegate = self  // Error here

    return cv

}()

override init(frame: CGRect){
    super.init(frame: frame)

}


required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
}

}

我无法将委托和数据源提供给我的 collectionview 我还实现了以下两种方法

cellForItemAt indexPath numberOfItemsInSection

任何帮助都会得到帮助

4

1 回答 1

3

这是因为您试图在关闭时访问 self

lazy var collectionView : UICollectionView = {
    [unowned self] in
    let layout = UICollectionViewFlowLayout()
    let cv = UICollectionView(frame: .zero, collectionViewLayout: layout)
    cv.backgroundColor = UIColor.rgb(red: 230, green: 32, blue: 31)
    cv.delegate = self  // Error here

    return cv

}()

这应该工作

于 2017-04-05T08:09:57.740 回答