Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

 

The ability to postpone the prompt to the user to opt-in to notifications. 

Objective-C

Code Block
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [[Appoxee shared] setPostponeNotificationRequest:YES]; // call this method, prior to any Appoxee call, to not show the approve notifications alert by the operating system.
    [[Appoxee shared] engageAndAutoIntegrateWithLaunchOptions:launchOptions andDelegate:nil];
    
    return YES;
}

...