Cocoa is full of singletons. Is there a logical/conventional difference between when the Cocoa APIs use

NSSingletonObject *so = [NSSingletonObject defaultSingleton];

versus

NSSingletonObject *so = [NSSingletonObject sharedSingleton];

?

Not a huge thing, but I don't really see why sometimes one is used versus the other.

link|improve this question

Which Classes are you thinking of? – hooleyhoop May 26 '10 at 9:24
feedback

1 Answer

up vote 6 down vote accepted

I think it tends to be that if it is a true singleton (such as NSApplication) that you are using, then the -[JKFoo sharedFoo] convention is followed. If on the other hand the class provides access to a default instance but you can still create other instances (for example NSNotificationQueue or NSFileManager) then the -[JKBar defaultBar] convention is used.

Side note: if you are implementing a few of your own Cocoa singletons, then there is a useful OpenSource header you might want to take a look at :)

[edit: an even better singleton solution using GCD was pointed out by Mike Ash on his blog]

link|improve this answer
Thanks for the tip! – MikeyWard May 25 '10 at 14:55
1  
Regarding implementing your own singleton, there are many recepies on the web for implementing a true singleton in Cocoa, but for the most part Objective-C handles things by convention rather than stricture. Don't waste your time writing a bullet-proof singleton unless your code will be used by many outside devs. If you document a class as being a singleton, Objective-C style generally says that's engough...if you use it as a non-singleton, that's your problem. – Barry Wark May 25 '10 at 17:13
NSApplication isn't a singlton. Nor NSNotificationCenter or NSFileManager. I'm not sure i can think of a singleton in Cocoa. – hooleyhoop May 26 '10 at 9:26
@mustlSignUp: OK, if you're being pedantic, you are right, but I think most people would refer to these classes as singletons as do Apple - gemma.apple.com/mac/library/documentation/Cocoa/Conceptual/…. – jkp May 26 '10 at 11:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.