Skip to content

Instantly share code, notes, and snippets.

@genkernel
Created May 17, 2013 10:09
Show Gist options
  • Save genkernel/5598209 to your computer and use it in GitHub Desktop.
Save genkernel/5598209 to your computer and use it in GitHub Desktop.
Modern Objective-C Singleton method. Updated with 'instancetype'.
+ (instancetype)sharedInstance {
static id instance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
instance = self.new;
});
return instance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment