Skip to content

Instantly share code, notes, and snippets.

@Appletone
Created May 17, 2016 15:53
Show Gist options
  • Save Appletone/9300ef0a701b465a89880fdf58374f1d to your computer and use it in GitHub Desktop.
Save Appletone/9300ef0a701b465a89880fdf58374f1d to your computer and use it in GitHub Desktop.
Swift Singleton
class MyManager {
private static let sharedInstance = 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