Re: object = [[Class alloc] init]
Re: object = [[Class alloc] init]
- Subject: Re: object = [[Class alloc] init]
- From: Max Seelemann <email@hidden>
- Date: Fri, 11 Apr 2003 21:36:45 +0200
object = [[Class alloc] init];
if(!object) // handle error
else
// do the next thing
hmmm. Better would be:
object = [[class alloc] init];
if (!object) return;
//do the next thing
cheers
MAX
--
Max Seelemann
email@hidden
--
chairman, executive director
The Blue Technologies Group
http://www.blue-tec.com/
_______________________________________________
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.