Skip to content

Instantly share code, notes, and snippets.

@LutherBaker
Created May 26, 2014 17:00
Show Gist options
  • Save LutherBaker/3ce6eedf836516772c2a to your computer and use it in GitHub Desktop.
Save LutherBaker/3ce6eedf836516772c2a to your computer and use it in GitHub Desktop.
Objective-C Cheatsheet
//
// Sharing an instance
//
+ (id)sharedInstance {
static SharedInstanceClass *instance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
instance = [[self alloc] init];
});
return instance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment