|
|
|
|
AppleTrackingAuthorizationStatus (Function) In french: AppleTrackingEtatAutorisation Determines if the app has been allowed to track activity based on user data (iOS only). If activity tracking is authorized, user data may be combined with data from other applications or websites for advertising purposes, for example.
SWITCH AppleTrackingAuthorizationStatus() CASE atasNotDetermined AppleRequestTrackingAuthorizationAsynchronous(OnTracking) CASE atasAuthorized TrackUser(AppleAdvertisingIdentifier()) END
Syntax
<Result> = AppleTrackingAuthorizationStatus()
<Result>: Integer constant Authorization status:
| | atasAuthorized | The authorization to track the user or the device has been granted | atasDenied | The authorization to track the user or the device has been denied. | atasNotDetermined | The user has not yet granted or denied the request. In this case, you can request user consent with AppleRequestTrackingAuthorizationAsynchronous. | atasRestricted | The device is managed by a "Device Management Profile" which restricts tracking. |
Business / UI classification: Neutral code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|