Skip to content

Instantly share code, notes, and snippets.

@jweinberg
Created April 22, 2011 16:12
Show Gist options
  • Save jweinberg/936955 to your computer and use it in GitHub Desktop.
Save jweinberg/936955 to your computer and use it in GitHub Desktop.
+ (id)sharedInstance
{
static id sharedInstance;
static dispatch_once_t once;
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