Quote:
Originally Posted by rTicker
I have two views and when the person takes a picture on the first view that photo will be in a uiimageview in the first view. How do I get that image in another views uiimageview?
|
Make the image a property of the first image view. Let's call it "imageToUse"
In the second view controller, use code like this:
myImageView.image = firstViewController.imageToUse;
The trick is getting pointers between the two view controllers. How do you create your view controllers?