swift中私有變量是會(huì)自定調(diào)用dispatch_once
的
<code>
class Network: NSObject {
//MARK: 實(shí)例單例
static let sharedInstance = Network()
private override init () {} // 禁止使用 init創(chuàng)建單例的其他實(shí)例
}
</code>
swift中私有變量是會(huì)自定調(diào)用dispatch_once
的
<code>
class Network: NSObject {
//MARK: 實(shí)例單例
static let sharedInstance = Network()
private override init () {} // 禁止使用 init創(chuàng)建單例的其他實(shí)例
}
</code>