11 lines
235 B
Mathematica
11 lines
235 B
Mathematica
|
|
+ (SomeSingleton *) sharedInstance
|
||
|
|
{
|
||
|
|
static SomeSingleton *sharedInstance = nil;
|
||
|
|
@synchronized(self) {
|
||
|
|
if (!sharedInstance) {
|
||
|
|
sharedInstance = [[SomeSingleton alloc] init];
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return sharedInstance;
|
||
|
|
}
|