I am trying to implement a UIScrollView-like filmstrip that will be populated with thumbnails of catalog pages. Selecting a thumbnail will cause the main UIScrollView to move to the selected page. The catalog can contain 100 - 200 pages, and I want to download them lazily only when necessary.
I did this in a UIScrollView with paging enabled, but I did not see anything better to do this in a script without paging. In UIScrollView (+ 1 when viewing scrolling), 6 thumbnails will be displayed at any given time. I want to remove and reuse the UIView sketch when the view scrolls, as I basically do with a UIScrollView (which is a scroll view of a search call).
Thank -
Jk
source
share