Skip to content

Instantly share code, notes, and snippets.

@shabib87
Last active February 24, 2017 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shabib87/7232c6231663130fe4288e8a6ace44a2 to your computer and use it in GitHub Desktop.
Save shabib87/7232c6231663130fe4288e8a6ace44a2 to your computer and use it in GitHub Desktop.
class Singleton {
static let sharedInstance = Singleton()
private init() {
// do stuff
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment