How to hide scroll bar of UICollectionView

后端 未结 3 2090
野趣味
野趣味 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条回答
  •  情歌与酒
    2020-12-29 19:58

    in Swift:

    collectionView.showsHorizontalScrollIndicator = false
    

    in Interface Builder:

提交回复
热议问题