Swift:UICollectionReusableView xib创建 报错

2019-10-30 11:49:20 浏览数 (1)

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

本文链接:https://blog.csdn.net/Mayxc/article/details/102794333

Xcode11 版本,通过xib创建UICollectionReusableView,存在无法获取xib文件问题

使用流程:

注册xib

代码语言:javascript复制
 let nibfoot = UINib.init(nibName: "PutQuestionFoodView", bundle: nil)
        let foot = UICollectionView.elementKindSectionFooter
        collectionView.register(nibfoot, forSupplementaryViewOfKind: foot, withReuseIdentifier: footID)

使用xib

代码语言:javascript复制
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一下,遇到同样问题的希望能有帮助到

0 人点赞