Initialize UIImagePickerController with the last used album

I would like to initialize the UIImagePickerController with the last used album and scroll to the last selected photo position.


I tried to create an UIImagePickerController object and reuse it on the second call. But unfortunately after [self.picker dismissViewControllerAnimated:NO completion:nil]; the picker reset the current position and on the next presentModalViewController the picker shows the root photo location.


Is there a way / trick to remember the position for the next call? This would make it easier for the user to select single photos from the same period.

Why not save the values in user defaults and read them back when you need it ?

Initialize UIImagePickerController with the last used album
 
 
Q