gpt4 book ai didi

swift - 无法创建 UICollectionReusableView 的 IBOutlet

转载 作者:行者123 更新时间:2023-11-28 07:33:17 24 4
gpt4 key购买 nike

我面临陌生人问题。我已将 UICollectionReusableView 用作 Collection View header 并将其设置在 collectionView 中。它的工作完全但是当我在 UICollectionReusableView 中创建 UILabelIBOutlet 它总是在 Collection View header 方法 viewForSupplementaryElementOfKind 中返回 nil .在 XIB 文件中 UILabel 连接成功。

这是我的代码。注册 CollectionView header

collectionView.register(Header.self, forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "Header")

func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
let headerView = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "Header", for: indexPath) as! Header
headerView.lblName.text = "Hello" //crash here
return headerView

}

这里是完整的演示 https://drive.google.com/open?id=1v2lWsQstfUiWDEldVH3Ru2HeB3LGWiXZ

最佳答案

解决了!!

我正在使用 XIB 作为 Collection View header ,所以我注册的方式是针对没有 collection view XIB 的。我改过了

collectionView.register(Header.self, forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "Header")

collectionView.register(UINib(nibName: "Header", bundle: nil), forSupplementaryViewOfKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "Header")

关于swift - 无法创建 UICollectionReusableView 的 IBOutlet,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54019954/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com