Quote:
Originally Posted by chrisb_1988
I'm creating a Photo application using storyboards.
In the first View controller I am using UIImagePickerController to allow the user to select an image from either their camera or photo library. However instead of the image then appearing in the UIIMageView on the same View Controller I want it to automatically push the image to a second View Controller. So as soon as you have dismissed the Camera or Photo Library you are looking at the image on the second View Controller.
Any help would be greatly appreciated.
thanks.
|
Personally, I would just save the image globally. Wherever you save your global variables
(singleton class, root controller, appdelegate, etc..), put it there, so you can access it from anywhere.