Skip to content

Instantly share code, notes, and snippets.

@yoxisem544
Last active July 9, 2017 13:55
Show Gist options
  • Save yoxisem544/4f946684fec68cca285bf608840edcfb to your computer and use it in GitHub Desktop.
Save yoxisem544/4f946684fec68cca285bf608840edcfb to your computer and use it in GitHub Desktop.
final public class Singleton {
public class func instance() -> Singleton {
struct Static {
static let instance: Singleton = Singleton()
}
return Static.instance
}
// Hide initializer
private init() { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment