Swift 单例
2021-03-11 本文已影响0人
Matsonga
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