ios - How To Show Scrollbar Always On UICollectionView -
i have uicollectionview added uiview in app working on. displayed in uicollectionview have set of images pulled core data. vertical scrolling works fine scrollbar not display until user touches uicollectionview.
how can make sure scrollbar @ right visible indication given user scrollable?
you can't make them visible. instead, can flash them once, when user first presented collection view notify them, view can scrolled.
since uicollectionview
subclass of uiscrollview
can this:
[mycollectionview flashscrollindicators];
check out settings app instance. when go settings list longer screen, scroll indicator flashed once.
Comments
Post a Comment