Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kaloprominat/82a5e60e0b7b4f263108 to your computer and use it in GitHub Desktop.
Save kaloprominat/82a5e60e0b7b4f263108 to your computer and use it in GitHub Desktop.
xcode objective-c singleton instance gcd example
+ (Singleton *)sharedSingleton
{
static Singleton *sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedInstance = [[Singleton alloc] init];
});
return sharedInstance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment