I m working on a UICollectionView class, and it will display the scroll bar when I scroll on the list, it\'s possible to hide scroll bar when scrolling?
UICollectionView
Option #1 (by code):
myCollectionView.showsVerticalScrollIndicator = false myCollectionView.showsHorizontalScrollIndicator = false
Option #2 (from storyboard):
Go to Attributes inspector > Uncheck "Show Horizontal Indicator" and "Show Vertical Indicator"