How do I convert (or create) a singleton class that compiles and behaves correctly when using automatic reference counting (ARC) in Xcode 4.2?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
In exactly the same way that you (should) have been doing it already:
|
|||||||||||||||||||||
|
|
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. |
|||
|
|
|
if you want to create other instance as needed.do this:
else,you should do this:
|
|||||||||
|