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

How do I convert (or create) a singleton class that compiles and behaves correctly when using automatic reference counting (ARC) in Xcode 4.2?

share|improve this question
3  
By ARM, do you mean ARC? – Nick Forge Sep 27 '11 at 12:20
1  
Yes I meant ARC – cescofry Sep 27 '11 at 12:46

3 Answers

up vote 144 down vote accepted

In exactly the same way that you (should) have been doing it already:

+ (MyClass *)sharedInstance
{
    static MyClass *sharedInstance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        sharedInstance = [[MyClass alloc] init];
        // Do any other initialisation stuff here
    });
    return sharedInstance;
}
share|improve this answer
6  
You just don't do any of the memory management hokey pokey Apple used to recommend in developer.apple.com/library/mac/documentation/Cocoa/Conceptual/… – Christopher Pickslay Sep 27 '11 at 21:05
8  
That is because he is using ARC. Completely right answer. – Marsson Jan 19 '12 at 10:33
1  
@MakingScienceFictionFact, you might want to take a look at this post – kervich Jul 24 '12 at 6:58
3  
@David static variables declared within a method/function are the same as a static variable declared outside a method/function, they are just only valid within the scope of that method/function. Every separate run through the +sharedInstance method (even on different threads) will 'see' the same sharedInstance variable. – Nick Forge Aug 3 '12 at 4:08
3  
What about if somebody calls [[MyClass alloc] init]? That would create a new object. How can we avoid this (other than declaring static MyClass *sharedInstance = nil outside the method). – rsanchezsaez Dec 7 '12 at 10:22
show 8 more comments

Alternatively, Objective-C provides the +(void)initialize method for NSObject and all its sub-classes. It is always called before any methods of the class.

I set a breakpoint in one once in iOS 6 and dispatch_once appeared in the stack frames.

share|improve this answer

if you want to create other instance as needed.do this:

+ (MyClass *)sharedInstance
{
    static MyClass *sharedInstance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        sharedInstance = [[MyClass alloc] init];
        // Do any other initialisation stuff here
    });
    return sharedInstance;
}

else,you should do this:

+ (id)allocWithZone:(NSZone *)zone
{
    static MyClass *sharedInstance = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        sharedInstance = [super allocWithZone:zone];
    });
    return sharedInstance;
}
share|improve this answer
True/False: The dispatch_once() bit means that you won't get additional instances, even in the first example...? – Olie May 9 at 18:04
1  
@Olie: False, because client code can do [[MyClass alloc] init] and bypass the sharedInstance access. DongXu, you should look at Peter Hosey's Singleton article. If you're going to override allocWithZone: to prevent more instances from being created, you also should override init to prevent the shared instance from being re-initialized. – Josh Caswell May 20 at 19:43
Ok, that's what I thought, hence the allocWithZone: version. Thx. – Olie May 20 at 23:35

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.