Skip to content

Instantly share code, notes, and snippets.

@TerryCK
Created August 19, 2017 08:02
Show Gist options
  • Save TerryCK/c66550855040af6e643ca92d5a16cad8 to your computer and use it in GitHub Desktop.
Save TerryCK/c66550855040af6e643ca92d5a16cad8 to your computer and use it in GitHub Desktop.
Singleton.swift
class SingletonClass {
static let shared = SingletonClass()
private init() { }
func someMethod() { }
let constantProperty = ""
var variableProperty = ""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment