I want my sections in the UICollectionView
to have a header with an image.
I have followed these steps:
I have the same issue. I have added referenceSizeForFooterInSection
but then also viewForSupplementaryElementOfKind
not getting called.
I have added this code in viewDidLoad()
and it worked for me:
if let flowLayout = self.collectionView.collectionViewLayout as? UICollectionViewFlowLayout {
flowLayout.sectionFootersPinToVisibleBounds = true
}