simple memory management question
simple memory management question
- Subject: simple memory management question
- From: James Cicenia <email@hidden>
- Date: Tue, 24 Feb 2009 07:37:43 -0600
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?
Thanks
James
_______________________________________________
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