Skip to content

Instantly share code, notes, and snippets.

@cocoaNib
Created September 25, 2015 13:21
Show Gist options
  • Save cocoaNib/e9603fa491218a0f95d9 to your computer and use it in GitHub Desktop.
Save cocoaNib/e9603fa491218a0f95d9 to your computer and use it in GitHub Desktop.
Singleton swift
class Singelton {
static let sharedInstance = Singelton()
private init(){}
}
// Learned from this great blog post
// http://krakendev.io/blog/the-right-way-to-write-a-singleton
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment