美文网首页
Swift 单例

Swift 单例

作者: CaptainRoy | 来源:发表于2019-11-12 09:42 被阅读0次

苹果官网

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

相关文章

网友评论

      本文标题:Swift 单例

      本文链接:https://www.haomeiwen.com/subject/wnrfictx.html