up vote 161 down vote favorite
228
share [g+] share [fb]

My singleton accessor method is merely:

static MyClass *gInstance = NULL;

+ (MyClass *)instance
{
    @synchronized(self)
    {
        if (gInstance == NULL)
            gInstance = [[self alloc] init];
    }

    return(gInstance);
}

(or a close variant thereof). How about yours?

link|improve this question

67% accept rate
1  
You probably want return(gInstance); – Dre Sep 28 '08 at 3:40
10  
What you have is fine, though you could move the global variable declaration into your +instance method (the only place it needs to be used, unless you're allowing it to be set as well) and use a name like +defaultMyClass or +sharedMyClass for your method. +instance isn't intention-revealing. – Chris Hanson Sep 28 '08 at 9:37
1  
Over 100 votes for a question which already includes an answer? It should have been added as a separate answer to the question. – Chei Jul 5 '11 at 8:56
1  
Please don't refer to self in static methods. While it is technically valid to do so in Objective-C, this is not a good habit to get into. – aroth Aug 5 '11 at 5:06
2  
@aroth: Objective-C does not have static methods, and using self in a class method used as an initializer is actually essential to make subclassing work properly. – Josh Caswell Sep 26 '11 at 7:09
feedback

21 Answers

up vote 81 down vote accepted

Another option is to use the +(void)initialize method. From the documentation:

The runtime sends initialize to each class in a program exactly one time just before the class, or any class that inherits from it, is sent its first message from within the program. (Thus the method may never be invoked if the class is not used.) The runtime sends the initialize message to classes in a thread-safe manner. Superclasses receive this message before their subclasses.

So you could do something akin to this:

static MySingleton *sharedSingleton;

+ (void)initialize
{
    static BOOL initialized = NO;
    if(!initialized)
    {
        initialized = YES;
        sharedSingleton = [[MySingleton alloc] init];
    }
}
link|improve this answer
2  
If the runtime will only ever call this once, what does the BOOL do? Is that a precaution in case someone calls this function explicitly from their code? – Aftermathew Apr 3 '09 at 17:28
2  
Yes, it is a precaution since the function can also be called directly. – Robbie Hanson Apr 8 '09 at 4:32
11  
This also is required because there could be subclasses. If they don’t override +initialize their superclasses implementation will be called if the subclass is first used. – Sven Sep 6 '10 at 21:25
2  
@Paul you can override the release method and make it empty. :) – WTP'-- Mar 25 '11 at 22:20
2  
@aryaxt: From the docs listed, this is already thread safe. So, the call is once per runtime -- period. This would seem to be the correct, thread-safe, optimally efficient solution. – lilbyrdie Jun 23 '11 at 13:52
show 6 more comments
feedback
@interface MySingleton : NSObject
{
}

+ (MySingleton *)sharedSingleton;
@end

@implementation MySingleton

+ (MySingleton *)sharedSingleton
{
  static MySingleton *sharedSingleton;

  @synchronized(self)
  {
    if (!sharedSingleton)
      sharedSingleton = [[MySingleton alloc] init];

    return sharedSingleton;
  }
}

@end

[Source]

link|improve this answer
6  
This is all you should usually use for singletons. Among other things, keeping your classes separately instantiable makes them easier to test, because you can test separate instances instead of having a way to reset their state. – Chris Hanson Sep 28 '08 at 9:36
Is it OK to leave out the @syncronised if you don't store any data in the singleton? – Stig Brautaset May 12 '11 at 15:10
2  
Stig Brautaset: No, it is not okay to leave out the @synchronized in this example. It is there to handle the possible race-condition of two threads executing this static function at the same time, both getting past the "if(!sharedSingleton)" test at the same time, and thus resulting in two [MySingleton alloc]s... The @synchronized {scope block} forces that hypothetical second thread to wait for the first thread to exit the {scope block} before being allowed to proceed into it. I hope this helps! =) – yAak Jul 13 '11 at 16:29
2  
What stops someone from still making their own instance of the object? MySingleton *s = [[MySingelton alloc] init]; – lindon fox Oct 28 '11 at 5:31
1  
@lindonfox What is the answer to your question? – Raffi Khatchadourian Dec 20 '11 at 21:48
show 3 more comments
feedback

Since Kendall posted a threadsafe singleton that attempts to avoid locking costs, I thought I would toss one up as well:

#import <libkern/OSAtomic.h>

static void * volatile sharedInstance = nil;                                                

+ (className *) sharedInstance {                                                                    
  while (!sharedInstance) {                                                                          
    className *temp = [[self alloc] init];                                                                 
    if(!OSAtomicCompareAndSwapPtrBarrier(0x0, temp, &sharedInstance)) {
      [temp release];                                                                                   
    }                                                                                                    
  }                                                                                                        
  return sharedInstance;                                                                        
}

Okay, let me explain how this works:

  1. Fast case: In normal execution sharedInstance has already been set, so the while loop is never executed and the function returns after simply testing for the variable's existence;

  2. Slow case: If sharedInstance doesn't exist, then an instance is allocated and copied into it using a Compare And Swap ('CAS');

  3. Contended case: If two threads both attempt to call sharedInstance at the same time AND sharedInstance doesn't exist at the same time then they will both initialize new instances of the singleton and attempt to CAS it into position. Whichever one wins the CAS returns immediately, whichever one loses releases the instance it just allocated and returns the (now set) sharedInstance. The single OSAtomicCompareAndSwapPtrBarrier acts as both a write barrier for the setting thread and a read barrier from the testing thread.

link|improve this answer
13  
This is complete overkill for the at-most one time it can happen during an application's lifetime. Nevertheless, it is spot-on correct, and the compare-and-swap technique is a useful tool to know about, so +1. – Steve Madsen Apr 22 '10 at 14:37
Nice answer - the OSAtomic family is a good thing to know about – Bill Feb 27 '11 at 1:24
@Louis: Amazing, really enlightening answer! One question though: what should my init method do in your approach? Throwing an exception when sharedInstance is initialized is not a good idea, I believe. What to do then to prevent user calling init directly many times? – delirus Sep 1 '11 at 16:39
I generally don't prevent it. There are often valid reasons to allow what is generally a singleton to multiply instantiated, the most commons is for certain types of unit testing. If I really wanted to enforce a single instance I would probably have the init method check to see if the global existed, and if it did I have it release self and return the global. – Louis Gerbarg Sep 2 '11 at 3:57
Hmm, why is the volatile qualification here necessary? Since sharedInstance is only initialized once how come we are preventing compiler from caching it in register by using volatile? – Tony Dec 29 '11 at 17:37
feedback

Per my other answer below, I think you should be doing:

+ (id)sharedFoo
{
    static dispatch_once_t once;
    static MyFoo *sharedFoo;
    dispatch_once(&once, ^ { sharedFoo = [[self alloc] init]; });
    return sharedFoo;
}
link|improve this answer
3  
Don't bother with all of what you're doing above. Make your (hopefully extremely few) singletons separately-instantiable, and just have a shared/default method. What you've done is only necessary if you really, truly, ONLY want a single instance of your class. Which you don't, esp. for unit tests. – Chris Hanson Sep 28 '08 at 9:35
The thing is this is the Apple sample code for "creating a singleton". But yeah, you're absolutely right. – Colin Barrett Oct 23 '08 at 1:39
The Apple sample code is correct if you want a "true" singleton (i.e. an object that can only be instantiated once, ever) but as Chris says, this is rarely what you want or need whereas some kind of settable shared instance is what you usually want. – Luke Redpath Jul 25 '09 at 1:25
+1 because singletons are generally a bad idea, and the +(id)sharedFoo approach works great. – Tom Dalling Sep 27 '11 at 4:53
feedback
static MyClass *sharedInst = nil;

+ (id)sharedInstance
{
    @synchronize( self ) {
        if ( sharedInst == nil ) {
            /* sharedInst set up in init */
            [[self alloc] init];
        }
    }
    return sharedInst;
}

- (id)init
{
    if ( sharedInst != nil ) {
        [NSException raise:NSInternalInconsistencyException
            format:@"[%@ %@] cannot be called; use +[%@ %@] instead"],
            NSStringFromClass([self class]), NSStringFromSelector(_cmd), 
            NSStringFromClass([self class]),
            NSStringFromSelector(@selector(sharedInstance)"];
    } else if ( self = [super init] ) {
        sharedInst = self;
        /* Whatever class specific here */
    }
    return sharedInst;
}

/* These probably do nothing in
   a GC app.  Keeps singleton
   as an actual singleton in a
   non CG app
*/
- (NSUInteger)retainCount
{
    return NSUIntegerMax;
}

- (oneway void)release
{
}

- (id)retain
{
    return sharedInst;
}

- (id)autorelease
{
    return sharedInst;
}
link|improve this answer
3  
I noticed that clang complains about a leak if you don't assign the result of [[self alloc] init] to sharedInst. – pix0r May 6 '09 at 18:21
feedback

You can optimize the access to the instance by synchronizing only if it's really needed. If gInstance is alread initialized, we don't have to take the lock.

static MyClass *gInstance = NULL;

+ (MyClass *)sharedMyClass
{ 
    if(gInstance)
        return gInstance;

    @synchronized(self)
    {
        if (gInstance == NULL)
            gInstance = [[self alloc] init];
    }
    return gInstance;
}
link|improve this answer
4  
The optimization already made a big difference in actual code. Avoiding the synchronization can be a big win, if you lazily call sharedMyClass on every access to the shared instance. – nschmidt Jul 14 '09 at 17:46
@nschmidt - If you bail early with if(gInstance) return gInstance; you don't later need to check if(gInstance == NULL) - you can assume that one is true. The compiler probably does that optimization, but it'll make your code clearer too, so go ahead and do that. – Chris Lutz Feb 18 '10 at 5:31
4  
@Chris Lutz: If I don't check for gInstance to be NULL, two threads could come along and both create an instance. – nschmidt Feb 20 '10 at 21:30
5  
The double-checked locking technique used here is often a real problem in some environments (see aristeia.com/Papers/DDJ_Jul_Aug_2004_revised.pdf or Google it). Until shown otherwise, I'd assume that Objective-C isn't immune. Also see wincent.com/a/knowledge-base/archives/2006/01/…. – Steve Madsen Apr 22 '10 at 15:02
If you do that, then there is no point in using synchronization at all. – Marius Oct 8 '10 at 2:44
show 1 more comment
feedback

A thorough explanation of the Singleton macro code is on the blog Cocoa With Love

http://cocoawithlove.com/2008/11/singletons-appdelegates-and-top-level.html.

M@

link|improve this answer
feedback

I have an interesting variation on sharedInstance that is thread safe, but does not lock after the initialization. I am not yet sure enough of it to modify the top answer as requested, but I present it for further discussion:

// Volatile to make sure we are not foiled by CPU caches
static volatile ALBackendRequestManager *sharedInstance;

// There's no need to call this directly, as method swizzling in sharedInstance
// means this will get called after the singleton is initialized.
+ (MySingleton *)simpleSharedInstance
{
    return (MySingleton *)sharedInstance;
}

+ (MySingleton*)sharedInstance
{
    @synchronized(self)
    {
        if (sharedInstance == nil)
        {
            sharedInstance = [[MySingleton alloc] init];
            // Replace expensive thread-safe method 
            // with the simpler one that just returns the allocated instance.
            SEL origSel = @selector(sharedInstance);
            SEL newSel = @selector(simpleSharedInstance);
            Method origMethod = class_getClassMethod(self, origSel);
            Method newMethod = class_getClassMethod(self, newSel);
            method_exchangeImplementations(origMethod, newMethod);
        }
    }
    return (MySingleton *)sharedInstance;
}
link|improve this answer
1  
+1 that's really intriguing. I might use class_replaceMethod to transform sharedInstance into a clone of simpleSharedInstance. That way you wouldn't ever have to worry about acquiring an @synchronized lock again. – Dave DeLong Feb 19 '10 at 6:19
It's the same effect, using exchangeImplementations means that after init when you call sharedInstance, you are really calling simpleSharedInstance. I actually started out with replaceMethod, but decided it was better to just switch the implementations around so the original still existed if needed... – Kendall Helmstetter Gelner Feb 19 '10 at 7:46
In further testing, I could not get replaceMethod to work - in repeated calls, the code still called the original sharedInstance instead of simpleSharedInstance. I think it may be because they are both class level methods... The replace I used was: class_replaceMethod(self, origSel, method_getImplementation(newMethod), method_getTypeEncoding(newMethod)); and some variations thereof. I can verify the code I have posted works and simpleSharedInstance is called after the first pass through sharedInstance. – Kendall Helmstetter Gelner Feb 19 '10 at 7:58
You can make a thread safe version that does not pay locking costs after initialization without doing a bunch of runtime mucking, I have posted an implementation below. – Louis Gerbarg Mar 15 '10 at 18:57
+1 great idea. I just love those things one can do with the runtime. But in most cases this probably is premature optimization. If I’d really have to get rid of the synchronization cost I’d probably use the lockless version by Louis. – Sven Sep 6 '10 at 21:35
show 1 more comment
feedback

All the implementations of initialize I've read above share a common error.

+ (void) initialize {
  _instance = [[MySingletonClass alloc] init] // <----- Wrong!
}

+ (void) initialize {
  if (self == [MySingletonClass class]){ // <----- Correct!
      _instance = [[MySingletonClass alloc] init] 
  }
}

The Apple documentation recommend you check the class type in your initialize block. Because subclasses call the initialize by default. There exists a non-obvious case where subclasses may be created indirectly through KVO. For if you add the following line in another class:

[[MySingletonClass getInstance] addObserver:self forKeyPath:@"foo" options:0 context:nil]

Objective-C will implicitly create a subclass of MySingletonClass resulting in a second triggering of +initialize.

You may think that you should implicitly check for duplicate initialization in your init block as such:

- (id) init { <----- Wrong!
   if (_instance != nil) {
      // Some hack
   }
   else {
      // Do stuff
   }
  return self;
}

But you will shoot yourself in the foot; or worse give another developer the opportunity to shoot themselves in the foot.

- (id) init { <----- Correct!
   NSAssert(_instance == nil, @"Duplication initialization of singleton");
   self = [super init];
   if (self){
      // Do stuff
   }
   return self;
}

TL;DR here's my implementation

@implementation MySingletonClass
static MySingletonClass * _instance;
+ (void) initialize {
   if (self == [MySingletonClass class]){
      _instance = [[MySingletonClass alloc] init];
   }
}

- (id) init {
   ZAssert (_instance == nil, @"Duplication initialization of singleton");
   self = [super init];
   if (self) {
      // Initialization
   }
   return self;
}

+ (id) getInstance {
   return _instance;
}
@end

(replace ZAssert with our own assertion macro; or just NSAssert)

link|improve this answer
feedback

I've rolled singleton into a class, so other classes can inherit singleton properties.

Singleton.h :

static id sharedInstance = nil;

#define DEFINE_SHARED_INSTANCE + (id) sharedInstance {  return [self sharedInstance:&sharedInstance]; } \
                               + (id) allocWithZone:(NSZone *)zone { return [self allocWithZone:zone forInstance:&sharedInstance]; }

@interface Singleton : NSObject {

}

+ (id) sharedInstance;
+ (id) sharedInstance:(id*)inst;

+ (id) allocWithZone:(NSZone *)zone forInstance:(id*)inst;

@end

Singleton.m :

#import "Singleton.h"


@implementation Singleton


+ (id) sharedInstance { 
    return [self sharedInstance:&sharedInstance];
}

+ (id) sharedInstance:(id*)inst {
    @synchronized(self)
    {
        if (*inst == nil)
            *inst = [[self alloc] init];
    }
    return *inst;
}

+ (id) allocWithZone:(NSZone *)zone forInstance:(id*)inst {
    @synchronized(self) {
        if (*inst == nil) {
            *inst = [super allocWithZone:zone];
            return *inst;  // assignment and return on first allocation
        }
    }
    return nil; // on subsequent allocation attempts return nil
}

- (id)copyWithZone:(NSZone *)zone {
    return self;
}

- (id)retain {
    return self;
}

- (unsigned)retainCount {
    return UINT_MAX;  // denotes an object that cannot be released
}

- (void)release {
    //do nothing
}

- (id)autorelease {
    return self;
}


@end

And here is an example of some class, that you want to become singleton.

#import "Singleton.h"

@interface SomeClass : Singleton {

}

@end

@implementation SomeClass 

DEFINE_SHARED_INSTANCE;

@end

The only limitation about Singleton class, is that it is NSObject subclass. But most time I use singletons in my code they are in fact NSObject subclasses, so this class really ease my life and make code cleaner.

link|improve this answer
feedback

This works in a non-garbage collected environment also.

@interface MySingleton : NSObject {
}

+(MySingleton *)sharedManager;

@end


@implementation MySingleton

static MySingleton *sharedMySingleton = nil;

+(MySingleton*)sharedManager {
    @synchronized(self) {
        if (sharedMySingleton == nil) {
            [[self alloc] init]; // assignment not done here
        }
    }
    return sharedMySingleton;
}


+(id)allocWithZone:(NSZone *)zone {
    @synchronized(self) {
        if (sharedMySingleton == nil) {
            sharedMySingleton = [super allocWithZone:zone];
            return sharedMySingleton;  // assignment and return on first allocation
        }
    }
    return nil; //on subsequent allocation attempts return nil
}


-(void)dealloc {
    [super dealloc];
}

-(id)copyWithZone:(NSZone *)zone {
    return self;
}


-(id)retain {
    return self;
}


-(unsigned)retainCount {
    return UINT_MAX;  //denotes an object that cannot be release
}


-(void)release {
    //do nothing    
}


-(id)autorelease {
    return self;    
}


-(id)init {
    self = [super init];
    sharedMySingleton = self;

    //initialize here

    return self;
}

@end
link|improve this answer
feedback

You don't want to synchronize on self... Since the self object doesn't exist yet! You end up locking on a temporary id value. You want to ensure that no one else can run class methods ( sharedInstance, alloc, allocWithZone:, etc ), so you need to synchronize on the class object instead:

@implementation MYSingleton

static MYSingleton * sharedInstance = nil;

+( id )sharedInstance {
    @synchronized( [ MYSingleton class ] ) {
        if( sharedInstance == nil )
            sharedInstance = [ [ MYSingleton alloc ] init ];
    }

    return sharedInstance;
}

+( id )allocWithZone:( NSZone * )zone {
    @synchronized( [ MYSingleton class ] ) {
        if( sharedInstance == nil )
            sharedInstance = [ super allocWithZone:zone ];
    }

    return sharedInstance;
}

-( id )init {
    @synchronized( [ MYSingleton class ] ) {
        self = [ super init ];
        if( self != nil ) {
            // Insert initialization code here
        }

        return self;
    }
}

@end
link|improve this answer
1  
The rest of the methods, accessor methods, mutator methods, etc should synchronize on self. All class(+) methods and initializers (and probably -dealloc) should synchronize on the class object. You can avoid having to manually sync if you use Objective-C 2.0 properties instead of accessor/mutator methods. All object.property and object.property = foo, are automatically synchronized to self. – Rob Dotson Jan 13 '10 at 22:10
2  
Please explain why you think that the self object doesn't exist in a class method. The runtime determines which method implementation to invoke based on the exact same value that it provides as self to every method (class or instance). – dreamlax Feb 19 '10 at 6:53
Inside of a class method, self is the class object. Try it yourself: #import <Foundation/Foundation.h> @interface Eggbert : NSObject + (BOOL) selfIsClassObject; @end @implementation Eggbert + (BOOL) selfIsClassObject { return self == [Eggbert class]; } @end int main (int argc, const char * argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; NSLog(@"%@", [Eggbert selfIsClassObject] ? @"YES" : @"NO"); [pool drain]; return 0; } – Josh Caswell Sep 27 '11 at 2:23
feedback

For an in-depth discussion of the singleton pattern in Objective-C, look here:

http://www.duckrowing.com/2010/05/21/using-the-singleton-pattern-in-objective-c/

link|improve this answer
feedback

Here's a macro that I put together:

http://github.com/cjhanson/Objective-C-Optimized-Singleton

It is based on the work here by Matt Gallagher But changing the implementation to use method swizzling as described here by Dave MacLachlan of Google.

I welcome comments / contributions.

link|improve this answer
the link seems broken - where can I get that source? – amok Aug 29 '10 at 21:09
feedback

How about

static MyClass *gInstance = NULL;

+ (MyClass *)instance
{
    if (gInstance == NULL) {
        @synchronized(self)
        {
            if (gInstance == NULL)
                gInstance = [[self alloc] init];
        }
    }

    return(gInstance);
}

So you avoid the synchronization cost after initialization?

link|improve this answer
feedback

Shouln't this be threadsafe and avoid the expensive locking after the first call?

+ (MySingleton*)sharedInstance
{
    if (sharedInstance == nil) {
        @synchronized(self) {
            if (sharedInstance == nil) {
                sharedInstance = [[MySingleton alloc] init];
            }
        }
    }
    return (MySingleton *)sharedInstance;
}
link|improve this answer
1  
The double-checked locking technique used here is often a real problem in some environments (see aristeia.com/Papers/DDJ_Jul_Aug_2004_revised.pdf or Google it). Until shown otherwise, I'd assume that Objective-C isn't immune. Also see wincent.com/a/knowledge-base/archives/2006/01/…. – Steve Madsen Apr 22 '10 at 15:04
feedback

Just wanted to leave this here so I don't lose it. The advantage to this one is that it's usable in InterfaceBuilder, which is a HUGE advantage. This is taken from another question that I asked:

static Server *instance;

+ (Server *)instance { return instance; }

+ (id)hiddenAlloc
{
    return [super alloc];
}

+ (id)alloc
{
    return [[self instance] retain];
}


+ (void)initialize
{
    static BOOL initialized = NO;
    if(!initialized)
    {
        initialized = YES;
        instance = [[Server hiddenAlloc] init];
    }
}

- (id) init
{
    if (instance)
        return self;
    self = [super init];
    if (self != nil) {
        // whatever
    }
    return self;
}
link|improve this answer
feedback
static mySingleton *obj=nil;

@implementation mySingleton

-(id) init {
    if(obj != nil){     
        [self release];
        return obj;
    } else if(self = [super init]) {
        obj = self;
    }   
    return obj;
}

+(mySingleton*) getSharedInstance {
    @synchronized(self){
        if(obj == nil) {
            obj = [[mySingleton alloc] init];
        }
    }
    return obj;
}

- (id)retain {
    return self;
}

- (id)copy {
    return self;
}

- (unsigned)retainCount {
    return UINT_MAX;  // denotes an object that cannot be released
}

- (void)release {
    if(obj != self){
        [super release];
    }
    //do nothing
}

- (id)autorelease {
    return self;
}

-(void) dealloc {
    [super dealloc];
}
@end
link|improve this answer
feedback

I know there are a lot of comments on this "question", but I don't see many people suggesting using a macro to define the singleton. It's such a common pattern and a macro greatly simplifies the singleton.

Here are the macros I wrote based on several Objc implementations I've seen.

Singeton.h

/**
 @abstract  Helps define the interface of a singleton.
 @param  TYPE  The type of this singleton.
 @param  NAME  The name of the singleton accessor.  Must match the name used in the implementation.
 @discussion
 Typcially the NAME is something like 'sharedThing' where 'Thing' is the prefix-removed type name of the class.
 */
#define SingletonInterface(TYPE, NAME) \
+ (TYPE *)NAME;


/**
 @abstract  Helps define the implementation of a singleton.
 @param  TYPE  The type of this singleton.
 @param  NAME  The name of the singleton accessor.  Must match the name used in the interface.
 @discussion
 Typcially the NAME is something like 'sharedThing' where 'Thing' is the prefix-removed type name of the class.
 */
#define SingletonImplementation(TYPE, NAME) \
static TYPE *__ ## NAME; \
\
\
+ (void)initialize \
{ \
    static BOOL initialized = NO; \
    if(!initialized) \
    { \
        initialized = YES; \
        __ ## NAME = [[TYPE alloc] init]; \
    } \
} \
\
\
+ (TYPE *)NAME \
{ \
    return __ ## NAME; \
}

Example of use:

MyManager.h

@interface MyManager

SingletonInterface(MyManager, sharedManager);

// ...

@end

MyManager.m

@implementation MyManager

- (id)init
{
    self = [super init];
    if (self) {
        // Initialization code here.
    }

    return self;
}

SingletonImplementation(MyManager, sharedManager);

// ...

@end

Why a interface macro when it's nearly empty? Code consistency between the header and code files; maintainability in case you want to add more automatic methods or change it around.

I'm using the initialize method to create the singleton as is used in the most popular answer here (at time of writing).

link|improve this answer
feedback

The accepted answer although it compiles is incorrect.


+ (MySingleton*)sharedInstance
{
    @synchronized(self)  <-------- self does not exist at class scope
    {
        if (sharedInstance == nil)
            sharedInstance = [[MySingleton alloc] init];
    }
    return sharedInstance;
}

Per apple documentation:

....You can take a similar approach to synchronize the class methods of the associated class, using the Class object instead of self

Even if using self works it shouldnt and this looks like a copy and paste mistake to me. The correct implementation for a class factory method would be:


+ (MySingleton*)getInstance
{
    @synchronized([MySingleton class]) 
    {
        if (sharedInstance == nil)
            sharedInstance = [[MySingleton alloc] init];
    }
    return sharedInstance;
}

link|improve this answer
3  
self most certainly does exist it class scope. It refers to the class instead of the instance of the class. Classes are (mostly) first class objects. – schwa Jan 25 '11 at 18:30
Why do you put @synchroninzed WITHIN a method? – Jim Thio May 4 '11 at 2:06
As schwa already said, self is the class object inside of a class method. See my comment for a snippet demonstrating this. – Josh Caswell Sep 27 '11 at 2:27
feedback

I usually use code roughly similar to that in Ben Hoffstein's answer (which I also got out of Wikipedia). I use it for the reasons stated by Chris Hanson in his comment.

However, sometimes I have a need to place a singleton into a NIB, and in that case I use the following:

@implementation Singleton

static Singleton *singleton = nil;

- (id)init {
    static BOOL initialized = NO;
    if (!initialized) {
        self = [super init];
        singleton = self;
        initialized = YES;
    }
    return self;
}

+ (id)allocWithZone:(NSZone*)zone {
    @synchronized (self) {
        if (!singleton)
            singleton = [super allocWithZone:zone]; 	
    }
    return singleton;
}

+ (Singleton*)sharedSingleton {
    if (!singleton)
        [[Singleton alloc] init];
    return singleton;
}

@end

I leave the implementation of -retain (etc.) to the reader, although the above code is all you need in a garbage collected environment.

link|improve this answer
Your code is not thread-safe. It uses synchronized in the alloc method, but not in the init method. Checking on the initialized bool is not thread-safe. – Mecki Jun 29 '09 at 12:44
feedback

Your Answer

 
or
required, but never shown

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