Skip to content

Instantly share code, notes, and snippets.

@nvkiet
Created July 20, 2014 13:32
Show Gist options
  • Select an option

  • Save nvkiet/1fa81a5480f08f9813a4 to your computer and use it in GitHub Desktop.

Select an option

Save nvkiet/1fa81a5480f08f9813a4 to your computer and use it in GitHub Desktop.
Declare a Singleton in Swift
class var sharedInstance : PusherManager {
struct Static {
static let instance : PusherManager = PusherManager()
}
return Static.instance;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment