Created
January 26, 2013 18:09
-
-
Save jhoughjr/4643570 to your computer and use it in GitHub Desktop.
my first singleton!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+(PHColorSchemeManager*) sharedInstance | |
{ | |
static PHColorSchemeManager* theInstance = nil; | |
if (theInstance == nil) { | |
theInstance = [[[self class] alloc] init]; | |
} | |
return theInstance; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment