RosettaCodeData/Task/Singleton/Objective-C/singleton-4.m

10 lines
241 B
Mathematica
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
+ (SomeSingleton *) sharedInstance
{
static SomeSingleton *sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedInstance = [[SomeSingleton alloc] init];
});
return sharedInstance;
}