Why is UICollectionViewCell's outlet nil?

后端 未结 8 2112
情话喂你
情话喂你 2020-11-29 16:56

I have created a custom UICollectionViewCell in Interface Builder, binded views on it to the class, and then when I want to use and set a string to the label on the string,

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-29 17:24

    Gotta register that nib guys!

    collectionView.register(UINib(nibName: "CustomCell", bundle: nil), forCellWithReuseIdentifier: "CustomCellId")
    

提交回复
热议问题