Skip to content

Instantly share code, notes, and snippets.

@doluvor
Created September 29, 2016 15:20
Show Gist options
  • Save doluvor/cfae6b9cc39c4225d93b91643139f96c to your computer and use it in GitHub Desktop.
Save doluvor/cfae6b9cc39c4225d93b91643139f96c to your computer and use it in GitHub Desktop.
Singleton using GCD
+ (instancetype)sharedInstance {
static dispatch_once_t once;
static id instance;
dispatch_once(&once, ^{
instance = [self new];
});
return instance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment