Skip to content

Instantly share code, notes, and snippets.

@samma835
Created November 5, 2014 05:20
Show Gist options
  • Save samma835/c40df96720b7588d073a to your computer and use it in GitHub Desktop.
Save samma835/c40df96720b7588d073a to your computer and use it in GitHub Desktop.
singleton in swift
private let sharedInstance = MyManager()
class MyManager {
class var sharedManager : MyManager {
return sharedInstance
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment