Skip to content

Instantly share code, notes, and snippets.

@naotokui
Created October 31, 2013 05:33
Show Gist options
  • Save naotokui/7244741 to your computer and use it in GitHub Desktop.
Save naotokui/7244741 to your computer and use it in GitHub Desktop.
+ (ClassName *)sharedInstance {
static dispatch_once_t once;
static ClassName *sharedInstance;
dispatch_once(&once, ^ { sharedInstance = [[ClassName alloc] init]]; });
return sharedInstance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment