I’m new to iOS development and I didn’t find a working solution to my problem.
My application allows user to take a picture from camera or camera roll and then displays this picture in a UIImageView in viewcontroller1.
I would like this image to be sent to another UIImageView in viewcontroller2 when clicking on a button on the viewcontroller1.
I am using Storyboard and the latest version of Xcode (target : iOS 6).
I’ve already tried NSUserDefaults method without success. Any help would be much appreciated!
When you present the next View Controller, in the
prepareForSegue:method you write:Hope this helps!