I have this example, and I would like to make my_Picture an instance variable in order to use removeFromView. Any Ideas? I got all kinds of warnings and errors trying different approaches. Thank you in advance
- (void) viewDidLoad
{
UIImageView *my_Picture = [[UIImageView alloc] initWithImage: myImageRef];
[self.view addSubview:my_Picture];
[my_Picture release];
[super viewDidLoad];
}