I also have a similar problem!xcode 14.2 , iOS 17.1.1
In the iOS system settings, it is confirmed that the application has been authorized to obtain full access, but I have two EKEventStore objects that call the [EKEventStore authorizationStatusForEntityType: EKEntityTypeEvent] method. One permission state is EKAuthorizationStatusAuthorized, while the other permission state is EKAuthorizationStatusNotDetermined
Post
Replies
Boosts
Views
Activity
xcode version : 16.0 beta (16A5171c)
Compilation error example code:
if (@available(iOS 14.3, *)) {
NSError *error = nil;
NSString *token = [AAAttribution attributionTokenWithError:&error];
} else {
if ([[ADClient sharedClient] respondsToSelector:@selector(requestAttributionDetailsWithBlock:)]) {
[[ADClient sharedClient] requestAttributionDetailsWithBlock:^(NSDictionary<NSString *,
NSObject *> * _Nullable attributionDetails,
NSError * _Nullable error) {
}];
}
}