I already have a scrollview with an image in and I set paging in the IB to on, so I didn’t use a pageControl. That all works, and I can go between images, but how can I make it automatically scroll? Like the thing on the featured page of the App Store?
I was thinking of having two NSTimers – one to scroll 320 points in say 0.3 seconds, and a second to count 4 seconds which then fires the first one. How would I do that? Thanks!
Instead using of
NSTimeryou can use[self performSelector: withObject: afterDelay:]BUT! It’s a just simple example how to make you scroll “animated”. If you want make “infinitive” scroll behavior like in AppStore you have to use another solution.
Check this tutorial to make circular and infinitive scroll view.