I’m using the UIImagePickerController to choose an image, and display it to the user immediately. However, I want the user to be able to swipe, and the next image from the album appears. The question is, how do I access the next image in the album after the initial user-selected image, programmatically?
I’m using the UIImagePickerController to choose an image, and display it to the user
Share
With UIImagePickerController you just can’t.
You need to use the ALAssets Library for that.
See this example: Accessing photo library using assets library
Best,
Christian