I know already how to open the camera roll:
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
[picker setDelegate:self];
[picker setSourceType:UIImagePickerControllerSourceTypePhotoLibrary];
[picker setAllowsEditing:YES];
[self presentModalViewController:picker animated:YES];
But I want it to go directly to the latest picture. It does it when you use the iPhone original camera. When you click on the thumbnail of the taken photo, the camera roll open and display it directly.
Is it possible to do this way?