Request Notification at Best Time for Appoxee Standalone
The ability to postpone the prompt to the user to opt-in to notifications.
Objective-C
- (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;
}
Â
Swift
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
Appoxee.shared()?.postponeNotificationRequest = true // 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 true
}
Â
To request notifications permissions  , call setPostponeNotificationRequest:NO
Objective-C
- (IBACTION)userWantsToBeNotifiedByPushNotifications
{
[[Appoxee shared] setPostponeNotificationRequest:NO];
}
Â
Swift