Created
December 20, 2015 08:11
-
-
Save jollyjoester/61794f6d1e818138a7ce to your computer and use it in GitHub Desktop.
Singleton #__swift__ #CodePiece
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 Singletone { | |
static let sharedInstance: Singletone = Singletone() | |
private init() { | |
print("Singleton") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment