美文网首页
swift单例

swift单例

作者: __Gavin__ | 来源:发表于2021-03-25 09:29 被阅读0次

示例:

class SZIAccount {
    var accountModel: SZIAccountModel! = SZIAccountModel()
    
    static let shared = SZIAccount()
    
    private init() {}
}

相关文章

网友评论

      本文标题:swift单例

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