I have a requirement to implement timed horizontal scrolling of several images which take up most of the screen (except for the top which will be occupied by a static navigation bar-like UIView
).
It needs to be timed so the images can swap programmatically but also user-swipable so the user can flick between them if they choose to. There are no requirements for the user to be able to pinch, zoom, scroll within an individual image etc. as each image is exactly the size of the available remaining space on the screen.
Googling for how to do this turns up a plethora of possibilities, some say use an existing library, some say to use UIScrollView
, others say to use a UIPageViewControllers
.
Which of the possibilities is most suitable?
Its for iOS6 and iOS5.