import UIKit
class SingleInstance: NSObject {
static let shared = SingleInstance()
private override init() {}
}
// 调用
let sing = SingleInstance.shared
import UIKit
class SingleInstance: NSObject {
static let shared = SingleInstance()
private override init() {}
}
// 调用
let sing = SingleInstance.shared
本文标题:Swift 单例
本文链接:https://www.haomeiwen.com/subject/woqoqltx.html
网友评论