Cocoa Style Question
Cocoa Style Question
- Subject: Cocoa Style Question
- From: Adam <email@hidden>
- Date: Thu, 31 Mar 2005 13:19:08 -0500
What is considered good cocoa style? I am sometimes tempted to be
efficient and code like:
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(sendCommandToSocket:)
name:@"AGFIBSSendCommandToSocket" object:nil];
Is it better to be more clear like and break things down:
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
[nc addObserver:self selector:@selector(sendCommandToSocket:)
name:@"AGFIBSSendCommandToSocket" object:nil];
_______________________________________________
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