Swift 单例

苹果官网

class Singleton {
    static let sharedInstance = Singleton()
    
    init() {
        print("init")
    }
}
class Singleton {
    static let sharedInstance:Singleton = {
        let instance = Singleton()
        // set up code
        return instance
    }()
}

你可能感兴趣的:(Swift 单例)