gpt4 book ai didi

swift:更改 UICollectionView 的选项 'section header"

转载 作者:行者123 更新时间:2023-11-28 14:02:25 25 4
gpt4 key购买 nike

当我将 UICollectionView 添加到 Storyboard 中的 ViewController 时,有一个标记为 "Section Header" 的复选框,我该如何触发该选项以编程方式(使用 CollectionView 的导出)

最佳答案

首先你应该像这样在你的 CollectionView 中注册你想使用的 HeaderView

collectionView.register(UINib(nibName: HCollectionReusableView.nibName, bundle: nil), forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "HCollectionReusableView")

然后你可以在你的UICollectionViewDataSource实现中调用函数

func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {

switch kind {
case UICollectionElementKindSectionHeader:
let reusableview = collectionView.dequeueReusableSupplementaryView(ofKind: UICollectionElementKindSectionHeader, withReuseIdentifier: "HCollectionReusableView", for: indexPath) as! HCollectionReusableView

reusableview.frame = CGRect(0 , 0, self.view.frame.width, headerHight)
//do other header related calls or settups
return reusableview
default:
fatalError("Unexpected element kind")
}
}

关于swift:更改 UICollectionView 的选项 'section header",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53432604/

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