Step 3: Advanced Integration
How to use appConsent object ?
Specify a dedicated endpoint at init
let appConsent = ACNotice(withAppKey: "YOUR_APP_KEY", dedicatedEndpointURL: "YOUR_BACKEND_ENDPOINT") self.appConsent = [[ACNotice alloc] initWithAppKey:@"YOUR_APP_KEY" dedicatedEndpointURL:@"YOUR_BACKEND_ENDPOINT"];Redirecting user to their Privacy Settings
appConsent.presentSettings(viewController: self)[self.appConsent presentSettingsWithViewController:self];Check if user gave consent
appConsent.consentGiven()BOOL consentStatus = [appConsent consentGiven];Implement delegates related to user consent
Check for update

GCM Status
Last updated