Skip to content

Instantly share code, notes, and snippets.

@exce11ent
Created October 20, 2014 09:59
Show Gist options
  • Save exce11ent/dbf8435e52c1ef08fabf to your computer and use it in GitHub Desktop.
Save exce11ent/dbf8435e52c1ef08fabf to your computer and use it in GitHub Desktop.
Swift singleton
class WithSingleton {
class var sharedInstance :WithSingleton {
struct Singleton {
static let instance = WithSingleton()
}
return Singleton.instance
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment