Re: Problems with 2 classes HELP
Re: Problems with 2 classes HELP
- Subject: Re: Problems with 2 classes HELP
- From: Dustin Voss <email@hidden>
- Date: Fri, 13 Feb 2004 16:32:35 -0800
On 13 Feb, 2004, at 2:30 PM, Pete Yandell wrote:
You also need a matching dealloc method:
- (void)dealloc
{
[collection release];
}
Actually, that should be:
- (void)dealloc
{
[collection release];
[super dealloc];
}
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.