Created
November 5, 2014 05:20
-
-
Save samma835/c40df96720b7588d073a to your computer and use it in GitHub Desktop.
singleton in swift
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
private let sharedInstance = MyManager() | |
class MyManager { | |
class var sharedManager : MyManager { | |
return sharedInstance | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment