Skip to content

Instantly share code, notes, and snippets.

@JaredCrawford
Created April 28, 2011 18:04
Show Gist options
  • Save JaredCrawford/946890 to your computer and use it in GitHub Desktop.
Save JaredCrawford/946890 to your computer and use it in GitHub Desktop.
Singleton Template
+(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