swift中私有变量是会自定调用dispatch_once
的
<code>
class Network: NSObject {
//MARK: 实例单例
static let sharedInstance = Network()
private override init () {} // 禁止使用 init创建单例的其他实例
}
</code>
swift中私有变量是会自定调用dispatch_once
的
<code>
class Network: NSObject {
//MARK: 实例单例
static let sharedInstance = Network()
private override init () {} // 禁止使用 init创建单例的其他实例
}
</code>