I\'m getting an image from the user from the photo gallery, and I want to pass it to a another view...
I\'ve read that I should be able to simply do something like t
First Viewcontroller:
-(void)passimage
{
Second_ViewController *select_main = [[UIStoryboard storyboardWithName:@"Main" bundle:nil]instantiateViewControllerWithIdentifier:@"Second_ViewController"];
select_main.tt_image = _bg_imageview.image;
[[self navigationController] pushViewController:select_main animated:YES];
}
Second Viewcontroller pass UIImage object:
- (void)viewDidLoad {
_bg_imageview.image = _bb_image;
}