vote up 21 vote down star
33

Mine is merely (or a close variant thereof):

static MyClass *gInstance = NULL;

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

80% accept rate
You probably want return(gInstance); – Dre Sep 28 '08 at 3:40
1  
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

9 Answers

vote up 11 vote down check

Here's a wiki version people can edit, based on schwa's original (now revised to include more methods, based on Apple's recommendations for Singletons):

static MySingleton *sharedInstance = nil;

@implementation MySingleton

#pragma mark -
#pragma mark class instance methods

#pragma mark -
#pragma mark Singleton methods

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

+ (id)allocWithZone:(NSZone *)zone {
    @synchronized(self) {
        if (sharedInstance == nil) {
            sharedInstance = [super allocWithZone:zone];
            return sharedInstance;  // 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
link|flag
4  
Is there any need to think about releasing gInstance? If you for an example uses the singleton pattern in an iphone application. – ullmark Apr 14 at 15:38
1  
@Markus Singletons in Objective C are usually intended to live from instantiation until the memory is reclaimed by the OS when the process terminates. – Gregory Higley Jun 24 at 4:57
vote up 2 vote down

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|flag
What optimisation? There's barely any code in a singleton to optimise. The extra code you have to look at isn't worth it in my opinion. – Brock Woolf Jul 14 at 10:23
2  
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 at 17:46
vote up -1 vote down

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|flag
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 at 12:44
vote up 1 vote down

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|flag
vote up 4 vote down

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|flag
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 at 17:28
Yes, it is a precaution since the function can also be called directly. – Robbie Hanson Apr 8 at 4:32
vote up 2 vote down

For years I've been copying the one out of the Apple docs:

static MyGizmoClass *sharedGizmoManager = nil;

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

+ (id)allocWithZone:(NSZone *)zone
{
    @synchronized(self) {
        if (sharedGizmoManager == nil) {
            sharedGizmoManager = [super allocWithZone:zone];
            return sharedGizmoManager;  // 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;
}

But I'm not really very happy with it. It would be great if Apple were to build this into the language.

link|flag
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 at 1:25
vote up 1 vote down

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|flag
vote up 7 vote down
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|flag
I noticed that clang complains about a leak if you don't assign the result of [[self alloc] init] to sharedInst. – pix0r May 6 at 18:21
vote up 4 vote down
@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|flag
Sorry, added source link. This is indeed a copy/paste from Wikipedia, but also happens to be the Singleton pattern I'd use. They are not mutually exclusive. – Ben Hoffstein Sep 28 '08 at 4:23
1  
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

Your Answer

Get an OpenID
or

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