In my ios which invokes Image Picker Controller to let user picks image from his phone.
I have implemented this callback when user finished picking the photo:
func imagePickerController(picker: UIImagePickerController!, didFinishPickingImage image: UIImage!, editingInfo: NSDictionary!) {
}
I would like to know if it is possible for me to find the file path of the image that the user has picked? I am thinking after the user picks the photos, he may exist from my app. I want to resume the photos which he picked before in my app. Is that possible?