Reading Notes Swift Singleton January 22, 2018May 11, 2019 WeiranLeave a comment Nice article says it all. class MySingleton { static let sharedInstance = MySingleton() private init() {}} Like Loading... Related