In your second view, have a method for setting the new UIImageView:
Code:
-(void)setTheImage:(UIImage*)anImage {
[theImageView setImage:anImage];
}
Then, when you call the second view, add the following:
Code:
[theSecondView setTheImage:myFirstImageView.image];
Or something along those lines.