Last active
August 29, 2015 14:02
-
-
Save suvarshibhadra/367bf097d6ae13222979 to your computer and use it in GitHub Desktop.
Swift Singleton
This file contains hidden or 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
class CRBrandManagerSwift:NSObject | |
{ | |
class func shared()->CRBrandManagerSwift{ | |
struct Static{ | |
static let s_manager = CRBrandManagerSwift(); | |
} | |
return Static.s_manager; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment