如何使用此布局添加标题? https://github.com/MagicLab-team/PinterestLayout这应该完全支持页眉和页脚,但这对我不起作用。当我回到默认布局时,我的代码是一个很好的原因,所有这些都可以正常工作。我想我需要对可可足目进行修改。有人可以看一下cocoapod代码吗?为确保一切正常,我可以粘贴代码。如果有人可以看一下cocoapod代码,并建议我可以添加标头,我将感到非常高兴。
collectionView.register(UICollectionViewCell.self, forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, withReuseIdentifier: "Category")
func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
let header = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "Category", for: indexPath)
header.backgroundColor = .red
return header
}
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, referenceSizeForHeaderInSection section: Int) -> CGSize {
return CGSize(width: view.frame.width, height: 100)
}