10 lines
241 B
Mathematica
10 lines
241 B
Mathematica
|
|
+ (SomeSingleton *) sharedInstance
|
||
|
|
{
|
||
|
|
static SomeSingleton *sharedInstance = nil;
|
||
|
|
static dispatch_once_t onceToken;
|
||
|
|
dispatch_once(&onceToken, ^{
|
||
|
|
sharedInstance = [[SomeSingleton alloc] init];
|
||
|
|
});
|
||
|
|
return sharedInstance;
|
||
|
|
}
|