Skip to content

Instantly share code, notes, and snippets.

@konrad1977
Created November 4, 2014 09:22
Show Gist options
  • Save konrad1977/673c77268695e331510d to your computer and use it in GitHub Desktop.
Save konrad1977/673c77268695e331510d to your computer and use it in GitHub Desktop.
Singleton in Swift
class Factory {
}
extension Factory {
class var SharedInstance: Factory {
struct Static {
static let instance: Factory = Factory()
}
return Static.instance
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment