Сохраните изображение в объекте UIImage и передайте его необходимому viewController
В текущем контроллере представления
.h объявите объект UIImage
UIImage *selectedImage;
В .m файле
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
[picker dismissModalViewControllerAnimated:YES];
selectedImage = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
imageView.image = selectedImage;
}
Передайте его в нужный вам viewController
YourViewController *viewObj = [[YourViewController alloc] initWithNibName:@"YourViewController" bundle:[NSBundle mainBundle]];
viewObj.imageToBePassed = selectedImage;
//You should synthesize this object imageToBePassed
[self viewObj animated:YES];
[viewObj release];