前端之家收集整理的这篇文章主要介绍了
Swift设计模式之单例模式,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
转自
原文
class DeathStarSuperlaser {
static let sharedInstance = DeathStarSuperlaser()
private init() {
}
}
let laser = DeathStarSuperlaser.sharedInstance
原文链接:https://www.f2er.com/swift/323804.html