Skip to content

Instantly share code, notes, and snippets.

@schystz
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schystz/8860185 to your computer and use it in GitHub Desktop.
Save schystz/8860185 to your computer and use it in GitHub Desktop.
ObjC Singleton Class Template
@interface FooClass : NSObject
+ (FooClass *)sharedInstance;
@end
@implementation FooClass
+ (FooClass *)sharedInstance
{
static dispatch_once_t onceToken;
static FooClass *sharedInstance = nil;
dispatch_once(&onceToken, ^{
sharedInstance = [[FooClass alloc] init];
});
return sharedInstance;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment