Skip to content

Instantly share code, notes, and snippets.

@joelmarquez90
Last active December 27, 2017 22:20
Show Gist options
  • Save joelmarquez90/c0754acec1e72a1571b830d4e5d6046f to your computer and use it in GitHub Desktop.
Save joelmarquez90/c0754acec1e72a1571b830d4e5d6046f to your computer and use it in GitHub Desktop.
Singleton Objective-C
+ (instancetype)sharedInstance
{
static TRNavigationManager *_sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_sharedInstance = [TRNavigationManager new];
});
return _sharedInstance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment