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:

enter image description here


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -