How to hide scroll bar of UICollectionView

后端 未结 3 2082
野趣味
野趣味 2020-12-29 19:32

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?

3条回答
  •  -上瘾入骨i
    2020-12-29 20:16

    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"

提交回复
热议问题