Opt-in/Opt-out methods within your app's setting screen, so the user can switch on/off option of receiving Push Notifications.
// 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]; } }];