Re: simple memory management question
Re: simple memory management question
- Subject: Re: simple memory management question
- From: Joar Wingfors <email@hidden>
- Date: Tue, 24 Feb 2009 09:05:49 -0800
On Feb 24, 2009, at 5:37 AM, James Cicenia wrote:
Hello -
I have the following snippet:
- (void)stateAction:(id)sender{
StatePickViewController *spvc = [[StatePickViewController alloc]
initWithNibName:@"StatePicker" bundle:nil];
[spvc setMyParentController:self];
[spvc setDialogView:fruitTypeView];
[spvc viewWillAppear:TRUE];
[fruitTypeView addSubview:spvc.view];
}
Now I thought I should put [spvc autorelease] at the end, but then
my view won't show.
Aren't I supposed to release spvc ? And if not, why not?
If you release it, and if no one else is retaining it, it will be
deallocated. Is that what you want? If not, you need to figure out who
would be the logical owner of that view controller, and that owner
then needs to have a reference (pointer) to the view controller and
retain it.
j o a r
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden