Skip to content

Instantly share code, notes, and snippets.

@alattis
Created March 4, 2013 01:15
Show Gist options
  • Save alattis/5079260 to your computer and use it in GitHub Desktop.
Save alattis/5079260 to your computer and use it in GitHub Desktop.
objective c singleton
+ (CLASS *)sharedInstance
{
static CLASS *sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedInstance = [[CLASS alloc] init];
// Do any other initialisation stuff here
});
return sharedInstance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment