I’d like to make an app where users (1) select an arbitrary number of photos from the Camera Roll, and then (2) randomly select (and display) one of the photos. I know how to:
- select (and display) a photo from the Camera Roll. (But I don’t know what info lets me reselect the image, something like an image path and name in the desktop world. This is the heart of my question.)
- create an array and append new items. (I assume I could append a string or object identifying an individual photo.)
- randomly select an item from an array
- display an image
I did see this question but it's several years old.