Re: NSObject Category
Re: NSObject Category
- Subject: Re: NSObject Category
- From: Marco Maniscalco <email@hidden>
- Date: Sun, 21 Aug 2005 16:38:00 +0200
But I also could rebuild the NSObject's internal funtionality to get
this work?
NSObject's code:
- (id)init
{
return self;
}
- (void)dealloc
{
#if !LIB_FOUNDATION_BOEHM_GC
NSDeallocateObject(self);
#endif
}
- (id)retain
{
#if !LIB_FOUNDATION_BOEHM_GC
NSIncrementExtraRefCount(self);
#endif
return self;
}
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden