I want to create a multi photo upload for my phonegap app — currently this is not available so I’m wondering if it would be possible to create an HTML version of the camera roll.
My thought would be if I could get access to the list of photo URI’s from the camera roll, I’d display them in my own HTML version of the camera roll, allow multiple photos to be selected, and then upload the ones that are selected – bypassing the native camera roll.
Is this possible?
Thanks!
This is not possible because iOS apps are sandboxed:
(Source: Apple’s iOS App Programming Guide)
This means that an app can only access its own files directly. So the photo roll is the only way for you to access the photos stored on the device.