Scrollbar incorrectly appears underneath UICollectionView section header

前端 未结 4 1465
野趣味
野趣味 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:14

    With a long-scrolling, async-loading collection, this alternative may offer slightly better performance.

    class MyHeaderView: UICollectionReusableView {
        override func apply(_ layoutAttributes: UICollectionViewLayoutAttributes) {
            layer.zPosition = 0
        }
    }
    

提交回复
热议问题