Skip to content

Instantly share code, notes, and snippets.

@licvido
Created July 20, 2014 15:49
Show Gist options
  • Save licvido/3ec14897b1f9fdd7df28 to your computer and use it in GitHub Desktop.
Save licvido/3ec14897b1f9fdd7df28 to your computer and use it in GitHub Desktop.
SWIFT: Shared instance
var APISharedInstance: API? = nil
class API
{
init()
{
APISharedInstance = self
}
class func sharedInstance() -> API
{
return APISharedInstance!
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment