Jan 22, 2018

Swift Singleton

Nice article says it all.

class MySingleton {
    static let sharedInstance = MySingleton()
    private init() {}
}