Re: Strong language about Cocoa and Qt.
Re: Strong language about Cocoa and Qt.
- Subject: Re: Strong language about Cocoa and Qt.
- From: Jeff Harrell <email@hidden>
- Date: Wed, 2 Jul 2003 13:51:17 -0500
On Wednesday, July 2, 2003, at 10:49 AM, James Quick wrote:
If you do not need to implement them, delete them so that calls to
those messages are passed to super. This is *A VERY BAD IDEA*
Uh. Sorry for presuming, but I thought it would have been obvious that
all of them do just that by default.
+ (void)initialize
{
[[MyObject superclass] initialize];
}
- (MyObject*)init
{
if (self = [super init]) {
}
return self;
}
- (void)dealloc
{
[super dealloc];
}
--
email@hidden
http://homepage.mac.com/jharrell
_______________________________________________
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.