I have an application that I'm working on that I would like to have seamless access to the user's photo library. I would like to access the photos directly without having to use UIImagePickerController and showing the dialog.
From what I can tell, there's no way to do this without using private APIs which could result in denial from the App Store.
So as a workaround, I was thinking of using UIImagePickerController, having the user pick as many photos as they want from the dialog, and for each photo save them to the Documents folder for my app. Then my app could access those photos directly in the future.
What I'm wondering is (Assuming the overall idea is valid) what is the maximum size limit of an app's documents folder?
Also, another option could be to insert data into a SQL Lite DB, but I'm also not sure of what the maximum size of the DB can be.
Thanks much!
From what I can tell, there's no way to do this without using private APIs which could result in denial from the App Store.
So as a workaround, I was thinking of using UIImagePickerController, having the user pick as many photos as they want from the dialog, and for each photo save them to the Documents folder for my app. Then my app could access those photos directly in the future.
What I'm wondering is (Assuming the overall idea is valid) what is the maximum size limit of an app's documents folder?
Also, another option could be to insert data into a SQL Lite DB, but I'm also not sure of what the maximum size of the DB can be.
Thanks much!