Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If you can target iOS 4.0 or above

Using GCD, is it the best way to create singleton in Objective C (thread safe)?

+ (id)sharedInstance
{
    static dispatch_once_t once;
    static id sharedInstance;
    dispatch_once(&once, ^{
        sharedInstance = [[self alloc] init];
    });
    return sharedInstance;
}
share|improve this question
Is there a way to prevent users of the class from calling alloc/copy? – NicolasMiari Jun 17 '12 at 20:58
@ranReloaded: You might define class method for alloc and copy which simply return the singleton, or something like this. – Hack Saw Jun 29 '12 at 17:57
For copy, I understand. But you are calling [self alloc] in the code above, so if you override it, your singleton will never be created, right? – NicolasMiari Jun 29 '12 at 20:39
2  
dispatch_once_t and dispatch_once appear to have been introduced in 4.0, not 4.1 (see: developer.apple.com/library/ios/#documentation/Performance/…) – Ben Flynn Jul 10 '12 at 23:29
This method becomes problematic if init requires use of the singleton object. Matt Gallagher's code has worked for me on more than a few occasions. cocoawithlove.com/2008/11/… – greg Oct 16 '12 at 6:41

2 Answers

up vote 71 down vote accepted

This is a perfectly acceptable and thread-safe way to create an instance of your class. It may not technically be a "singleton" (in that there can only ever be 1 of these objects), but as long as you only use the [Foo sharedFoo] method to access the object, this is good enough.

share|improve this answer
1  
How do you release it though? – samvermette Jan 10 '12 at 23:20
21  
@samvermette you don't. the point of a singleton is that it will always exist. thus, you don't release it, and the memory gets reclaimed with the process exits. – Dave DeLong Jan 10 '12 at 23:34
That's right. It won't be a 'leak', either, since you have a reference to the object all along. – NicolasMiari Jun 29 '12 at 20:40
1  
@Dave DeLong: In my opinion purpose of having singleton is not a certainty of its immortality, but certainty that we have one instance. What if that singleton decrement a semaphore? You can't just arbitrary say that it will always exists. – jacekmigacz Jan 25 at 13:40

Dave is correct, that is perfectly fine. You may want to check out Apple's docs on creating a singleton for tips on implementing some of the other methods to ensure that only one can ever be created if classes choose NOT to use the sharedFoo method.

share|improve this answer
5  
eh... that's not the greatest example of creating a singleton. Overriding the memory management methods is not necessary. – Dave DeLong Apr 19 '11 at 18:33
12  
This is completely invalid using ARC. – logancautrell Nov 1 '11 at 1:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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