Scrollbar incorrectly appears underneath UICollectionView section header

前端 未结 4 1466
野趣味
野趣味 2020-12-29 21:14

For some reason my scrollbar always appears underneath the collection view section header. Any help is greatly appreciated!

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-29 21:35

    Here is my alternative which seems to work better on iOS12 when subclassing UICollectionReusableView.

    final class BasicCollectionSectionHeader: UICollectionReusableView {
        override var layer: CALayer {
            let layer = super.layer
            layer.zPosition = 0 // make the header appear below the collection view scroll bar
            return layer
        }
    }
    

提交回复
热议问题