You cannot make them always visible. Instead, you can scroll them once when the user is presented with a collection view first to notify them that the view can be scrolled.
Since UICollectionView is a subclass of UIScrollView , you can do this:
[myCollectionView flashScrollIndicators]
Check, for example, the Settings app. When you go to the settings list, which is longer than on the screen, the scroll indicator will flash once.
source share