I\'m struggling to achieve a \"floating section header\" effect with UICollectionView. Something that\'s been easy enough in UITableView (default b
UICollectionView
UITableView
Swift 5.0
Put the following in your viewDidLoad:
if let layout = collectionView?.collectionViewLayout as? UICollectionViewFlowLayout { layout.sectionHeadersPinToVisibleBounds = true }