Skip to content

Instantly share code, notes, and snippets.

@Tron5000
Last active March 22, 2017 03:27
Show Gist options
  • Select an option

  • Save Tron5000/2bd9965aa3a0346695c6 to your computer and use it in GitHub Desktop.

Select an option

Save Tron5000/2bd9965aa3a0346695c6 to your computer and use it in GitHub Desktop.
Singleton Pattern in Swift >= v1.2
// Swift 1.2 introduced support for static properties.
class Singleton {
static let shared = Singleton()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment