Skip to content

Instantly share code, notes, and snippets.

@amarcadet
Last active October 12, 2015 13:08
Show Gist options
  • Save amarcadet/4031722 to your computer and use it in GitHub Desktop.
Save amarcadet/4031722 to your computer and use it in GitHub Desktop.
Singleton
+ (instancetype)sharedInstance
{
static dispatch_once_t once;
static <#class#> *singleton;
dispatch_once(&once, ^{ singleton = [[<#class#> alloc] init]; });
return singleton;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment