You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
private static let keychain = KeychainSwift()
private static let KWNETWORKUUIDKEY = "kw_network_uuid_key"
static func idfv() -> String {
semaphore.wait()
var result = keychain.get(KWNETWORKUUIDKEY)
var log = ""
if result == nil {
let temp = UIDevice.current.identifierForVendor?.uuidString
result = temp
if result != nil {
let saveRes = keychain.set(result!, forKey: KWNETWORKUUIDKEY)
}
}
if result == nil || result!.isEmpty {
exit(0)
}
semaphore.signal()
return result!
}
The value obtained through the “get value for key” method will change. Can anyone give me an answer?
The text was updated successfully, but these errors were encountered:
The value obtained through the “get value for key” method will change. Can anyone give me an answer?
The text was updated successfully, but these errors were encountered: