If you can target iOS 4.1 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;
}
link|improve this question

50% accept rate
feedback

2 Answers

up vote 20 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.

link|improve this answer
How do you release it though? – samvermette Jan 10 at 23:20
4  
@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 at 23:34
feedback

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.

link|improve this answer
3  
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
2  
This is completely invalid using ARC. – logancautrell Nov 1 '11 at 1:55
feedback

Your Answer

 
or
required, but never shown

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