Skip to content

Instantly share code, notes, and snippets.

@unculturedswine
Created January 17, 2015 19:00
Show Gist options
  • Save unculturedswine/8d4662fac2b74049d766 to your computer and use it in GitHub Desktop.
Save unculturedswine/8d4662fac2b74049d766 to your computer and use it in GitHub Desktop.
+ (EntryController *)sharedInstance {
static EntryController *sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedInstance = [[EntryController alloc] init];
[sharedInstance loadFromDefaults];
});
return sharedInstance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment