M mcanadiensfan63 macrumors member Original poster Nov 1, 2008 #1 ok so im trying to get it so that when i click on the button in the interface it brings up a picture. How do i do this?
ok so im trying to get it so that when i click on the button in the interface it brings up a picture. How do i do this?
J jnic macrumors 6502a Nov 3, 2008 #3 IBAction on the button that calls [self.view addSubView:imageView], where imageView is a UIImageView whose image property is set to the UIImage you want to show.
IBAction on the button that calls [self.view addSubView:imageView], where imageView is a UIImageView whose image property is set to the UIImage you want to show.