• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: simple memory management question
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


References: 
 >simple memory management question (From: James Cicenia <email@hidden>)

  • Prev by Date: Re: [Q] What causes an NSArrayController to know that an entity was inserted via a different window?
  • Next by Date: Re: simple memory management question
  • Previous by thread: simple memory management question
  • Next by thread: Re: simple memory management question
  • Index(es):
    • Date
    • Thread