Skip to content

Instantly share code, notes, and snippets.

@romyilano
Forked from JaredCrawford/gist:946890
Created December 1, 2013 21:29
Show Gist options
  • Save romyilano/7741096 to your computer and use it in GitHub Desktop.
Save romyilano/7741096 to your computer and use it in GitHub Desktop.
Singleton using GCD dispatch_once
+(id)singleton{
static dispatch_once_t once;
static id singleton;
dispatch_once(&once, ^ { singleton = [[self alloc] init]; });
return singleton;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment