Skip to content

Instantly share code, notes, and snippets.

@newmarcel
Created November 5, 2012 11:53
Show Gist options
  • Save newmarcel/4016847 to your computer and use it in GitHub Desktop.
Save newmarcel/4016847 to your computer and use it in GitHub Desktop.
GCD-based Singleton
+ (id)sharedManager
{
static dispatch_once_t once = 0;
static id sharedInstance = nil;
dispatch_once(&once, ^{
sharedInstance = [self alloc] init];
});
return sharedInstance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment