Last active
May 25, 2021 06:38
-
-
Save imjhk03/42deb303538982f262aa0d0bb225c446 to your computer and use it in GitHub Desktop.
Shows scrollbar over header or footer view (iOS 12 and below)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func collectionView(_ collectionView: UICollectionView, willDisplaySupplementaryView view: UICollectionReusableView, forElementKind elementKind: String, at indexPath: IndexPath) { | |
| // works from iOS 12 and below | |
| view.layer.zPosition = 0 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment