Managing Push Notifications
// Enables receiving Netmera push notifications
Netmera.setReceivingPushNotificationsEnabled(true)
// Disables receiving Netmera push notifications
Netmera.setReceivingPushNotificationsEnabled(false)Checking Push Notification Status
// Check current push notification status using Netmera
Netmera.isReceivingPushNotificationsEnabled { [weak self] isEnabled in
DispatchQueue.main.async {
self?.pushSwitch.isOn = isEnabled
}
}Last updated
Was this helpful?