Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

Opt-in/Opt-out methods within your app's setting screen, so the user can switch on/off option of receiving Push Notifications. The notification permission (to let user to allow or disallow receiving Push Notifications) is called in the 'engage' function by the first launch.

 iOS [Objective-C]
// Disable & Enable
[[Appoxee shared] disablePushNotifications:booleanArgument withCompletionHandler:^(NSError *appoxeeError, id data) {

	if (!appoxeeError) {

		// operation was successful.
	}
}];

// State (enabled or disabled)
[[Appoxee shared] isPushEnabled:^(NSError *appoxeeError, id data) {

	if (!appoxeeError) {

		BOOL state = [(NSNumber *)data boolValue];
	}
}];
 iOS [Swift]
Appoxee.shared()?.disablePushNotifications(booleanArgument, withCompletionHandler: { (appoxeeError, data) in
    
    if appoxeeError == nil {
        
        // Operation was successful.
    }
})
 
Appoxee.shared()?.isPushEnabled({ (appoxeeError, data) in
    
    if appoxeeError == nil {
        
        let isEnabled = data as? NSNumber
    }
})
 Android [Java]
//Sets whether push notification are to be sent to the device
public RequestStatus setPushEnabled(boolean isPushEnabled) 

Appoxee.instance().setPushEnabled(true);

  • No labels