Hello,
I am organizing my view controllers with storyboards and connecting them by Segue's from a UIButton to a Viewcontroller. This is how I am navigating between views.
And for the UIImageView I have it setup when you click an image (which is a button) the UIImageView displays that Image.
Example.....
-(IBAction)pictureSelected{
ImageView.image = picture
The code I used above....
-(IBAction)m_300m{
metalCases.image = metal_300m;
I am trying to find away to connect or transfer that UIImageView into a different ViewController.
Sorry I am still new to Xcode and Objective-c and still learning
Also I am now looking into setting up a data container singleton.
Thanks Duncan C
Joe