在 iOS 14 中,我们有一个新功能来跟踪 IDFA。这是默认设置,仅在 iOS 14 中可用。(设置 > 隐私 > 跟踪 > 允许应用请求跟踪)。我想使用 Objective-C 检查允许应用程序请求跟踪切换是打开还是关闭。我怎样才能做到这一点?
问问题
1468 次
2 回答
6
请注意,我们只能使用ATTrackingManager
API 访问我们自己的应用程序的授权状态。我们无法使用任何公共 API 读取全局设置。
您可以通过检查以下值来检查应用的状态[ATTrackingManager trackingAuthorizationStatus]
:
ATTrackingManagerAuthorizationStatus status = [ATTrackingManager trackingAuthorizationStatus];
switch (status) {
case ATTrackingManagerAuthorizationStatusNotDetermined:
// The user has not yet received an authorization request to authorize access to app-related data that can be used for tracking the user or the device.
break;
case ATTrackingManagerAuthorizationStatusAuthorized:
// The user authorizes access to app-related data that can be used for tracking the user or the device.
break;
case ATTrackingManagerAuthorizationStatusDenied:
// The user denies authorization to access app-related data that can be used for tracking the user or the device.
break;
case ATTrackingManagerAuthorizationStatusRestricted:
// The authorization to access app-related data that can be used for tracking the user or the device is restricted.
break;
}
您还可以在向用户请求授权后读取相同的状态:
[ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) {
// Check for status after request
}];
另请注意,我们只能请求一次授权。不建议继续向用户请求请求。
但是,如果您的应用程序确实需要这样做,那么解决方案是将用户导航到设置,指示他们为应用程序打开授权:
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
[self checkTrackingAuthorization:ATTrackingManager.trackingAuthorizationStatus];
}
- (void)checkTrackingAuthorization:(ATTrackingManagerAuthorizationStatus) status {
switch (status) {
case ATTrackingManagerAuthorizationStatusAuthorized:
// The user authorizes access to app-related data that can be used for tracking the user or the device.
break;
case ATTrackingManagerAuthorizationStatusNotDetermined:
// The user has not yet received an authorization request to authorize access to app-related data that can be used for tracking the user or the device.
[self requestTrackingAccess];
break;
case ATTrackingManagerAuthorizationStatusDenied:
// The user denies authorization to access app-related data that can be used for tracking the user or the device.
case ATTrackingManagerAuthorizationStatusRestricted:
// The authorization to access app-related data that can be used for tracking the user or the device is restricted.
[self displayTrackingAccessAlert];
break;
}
}
- (void)requestTrackingAccess {
[ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) {
[self checkTrackingAuthorization:status];
}];
}
- (void)displayTrackingAccessAlert {
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Tracking access is required" message:@"Please turn on access to tracking on the settings" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *settingsAction = [UIAlertAction actionWithTitle:@"Settings" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
// Open the Settings app
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString] options:@{} completionHandler:nil];
}];
UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleDefault handler:nil];
[alert addAction:settingsAction];
[alert addAction:cancelAction];
[alert setPreferredAction:settingsAction];
UIWindow *alertWindow = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
alertWindow.rootViewController = [[UIViewController alloc] init];
alertWindow.windowLevel = UIWindowLevelAlert + 1;
[alertWindow makeKeyAndVisible];
[alertWindow.rootViewController presentViewController:alert animated:YES completion:nil];
}
于 2021-01-29T07:45:26.660 回答
1
您将需要跟踪您的应用是否已请求跟踪权限(例如,将 a 存储bool
在NSUserDefaults
.
然后你可以检查[ATTrackingManager trackingAuthorizationStatus]
。如果状态是ATTrackingManagerAuthorizationStatusDenied
但您从未请求过跟踪权限(因此用户不能明确拒绝对您的应用程序的跟踪权限),您知道“允许应用程序请求跟踪”开关已关闭。
一旦您请求许可,您就无法再确定开关是否关闭,或者用户是否刚刚明确拒绝了对您的应用的跟踪权限。无论哪种方式,您都无能为力,并且不断要求用户打开跟踪功能不会让他们喜欢您的应用程序。
于 2021-01-29T08:38:21.330 回答