I use xcode12 to compile and use the following code to get idfa on ios13.4 devices.
if ASIdentifierManager.shared().isAdvertisingTrackingEnabled {
let idfa = ASIdentifierManager.shared().advertisingIdentifier.uuidString
}
But using the same code, no idfa can be obtained without calling ATT on IOS14 device.
Is this result correct? please confirm, thanks.
if ASIdentifierManager.shared().isAdvertisingTrackingEnabled {
let idfa = ASIdentifierManager.shared().advertisingIdentifier.uuidString
}
But using the same code, no idfa can be obtained without calling ATT on IOS14 device.
Is this result correct? please confirm, thanks.