1

我得到錯誤:沒有一個名爲 '的registerClass'爲collectionView無法註冊reuseIdentifier,爲什麼?

override func viewDidLoad() { 
    super.viewDidLoad() 

    self.collectionView.registerClass(MyCollectionViewCell.self, forCellWithReuseIdentifier: "title") 
    self.collectionView.registerClass(MyCollectionViewCell.self, forCellWithReuseIdentifier: "content") 
} 

爲什麼,是什麼問題會員?

enter image description here

回答

2

你需要解開條件的集合視圖(錯誤消息你當你離開了是混亂的「!」 - 我不知道爲什麼它提到numberOfItemsInSection),

self.collectionView!.registerClass(MyCollectionViewCell.self, forCellWithReuseIdentifier: "title") 
相關問題