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 (Cocoa-dev@lists.apple.com)

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:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to