ios - How to hide scroll bar of UICollectionView -
i m working on uicollectionview
class, , display scroll bar when scroll on list, it's possible hide scroll bar when scrolling?
objective c:
[collectionview setshowshorizontalscrollindicator:no]; [collectionview setshowsverticalscrollindicator:no];
swift 3.0
colview.showshorizontalscrollindicator = false colview.showsverticalscrollindicator = false
from storyboard:
Comments
Post a Comment