Skip to content

Instantly share code, notes, and snippets.

@licvido
Created August 30, 2014 16:08
Show Gist options
  • Save licvido/e6cb40763aac76093ad0 to your computer and use it in GitHub Desktop.
Save licvido/e6cb40763aac76093ad0 to your computer and use it in GitHub Desktop.
SWIFT: Singleton design pattern
class MyClass
{
class var sharedInstance: MyClass {
struct Static {
static let instance: MyClass = MyClass()
}
return Static.instance
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment