我正在使用视图并在其中实现一个集合视图
当我尝试引用数据源并委托给我的 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
任何帮助都会得到帮助