Xcode11 版本,通过xib创建UICollectionReusableView,存在无法获取xib文件问题
使用流程:
注册xib
let nibfoot = UINib.init(nibName: "PutQuestionFoodView", bundle: nil)
let foot = UICollectionView.elementKindSectionFooter
collectionView.register(nibfoot, forSupplementaryViewOfKind: foot, withReuseIdentifier: footID)
使用xib
private lazy var footerView: PHPutQuestionFoodView = {
let headView = collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionView.elementKindSectionFooter, withReuseIdentifier: footID, for: IndexPath(item: 0, section: 0)) as? PutQuestionFoodView
return headView!
}()
在使用xib的时候,存在获取nil问题
导致原因:UICollectionReusableView 类型创建时,xib未自动关联
这个位置把创建的类名记得写入,这个是xcode问题,Mark一下,遇到同样问题的希望能有帮助到