Skip to content

Instantly share code, notes, and snippets.

@noxious
Created July 24, 2015 05:46
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 noxious/9c164339973217eaf52f to your computer and use it in GitHub Desktop.
Save noxious/9c164339973217eaf52f to your computer and use it in GitHub Desktop.
singleton in swift
class TheOneAndOnlyKraken {
static let sharedInstance = TheOneAndOnlyKraken()
private init() {} //This prevents others from using the default '()' initializer for this class.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment