I have a UIViewController with a UIImageView in it and a array of UIImage. How Can I develop slide feature to right or left in order to change the image to the next array position?
I have a UIViewController with a UIImageView in it and a array of UIImage
Share
The common approach is a UIScrollView the size of one of the images, with paging enabled.
Add the images as subviews and set the content size like this…
You might also turn off bounce, scrolling indicators, etc. depending on the details of the effect you want.