You can scroll to some point as a scroll with the following in Obj-C
[scrollView setContentOffset:CGPointMake(x, y) animated:YES]
or swift
scrollView.contentOffset = CGPoint(x: x, y: y)
To make a slide show using UIScrollView, you arrange all the images in scroll mode, set up a repeating timer, then -setContentOffset: animated: when the timer fires.
user4919266
source share