In iOS 14 we have a new feature to track IDFA. It’s the default and only available in iOS 14. (Settings > Privacy > Tracking > Allow Apps to Request to Track). I want to check if Allow Apps to Request to Track toggle is ON or OFF using objective-C. How can I do that?
Can we check if Allow Apps to Request to Track toggle is ON
3.3k Views Asked by Phạm Ân AtThere are 2 best solutions below

You will need to track whether your app has asked for tracking permission (say, store a bool
in NSUserDefaults
.
Then you can check [ATTrackingManager trackingAuthorizationStatus]
. If the status is ATTrackingManagerAuthorizationStatusDenied
but you haven't ever asked for tracking permission (and therefore the user can't have explicitly denied tracking permission to your app) you know that the "Allow apps to request to track" switch is off.
Once you have asked for permission you can no longer determine if the switch is off or if the user has just denied tracking permission to your app explicitly. Either way there isn't much you can do and continually badgering the user to turn tracking on isn't going to endear your app to them.
Note that we are only able to access the status of authorization for our own apps using the
ATTrackingManager
API. We are not able to read the global setting using any public API.You can check the status for your app by checking the value for
[ATTrackingManager trackingAuthorizationStatus]
:You can also read the same status after you request authorization from the user:
Also note we can only request for authorization once. It's not recommended to keep asking the user for request.
But if that is really required for your app, a solution for that would be to navigate the user to the Settings instruct them to turn the authorization on for the app: