Enable or Disable Iphone Push Notifications inside the app

31,691

Solution 1

First thing is that you can not enable and disable push notification in inside the app. If you have found some apps which did it than there must be workaround solution.

Like if you want to do Inside the app then use one identifier and send it to server according push notification enable and disable button. So, your server side coding use this identifier and work according to that. Like identifier is say it's enable than your server will send notification otherwise not.

You can check that user set enable or disable Push Notifications using following code.

Enable or Disable Iphone Push Notifications

UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (types == UIRemoteNotificationTypeNone) 
 // Yes it is..

Hope, this will help you..

Solution 2

[FYI - Few users have reported that it stopped working on iOS 10]

You can easily enable and disable push notifications in your application by calling registerForRemoteNotificationTypes and unregisterForRemoteNotificationTypes respectively again. I have tried this and it works.

Solution 3

Pragmatically, it is possible to enable & disable push notification by registering and unregistering push notification.

Enable Push Notification:

if #available(iOS 10.0, *) {
   // For iOS 10.0 +
   let center  = UNUserNotificationCenter.current()
   center.delegate = self
   center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in
        if error == nil{
           DispatchQueue.main.async(execute: {
                 UIApplication.shared.registerForRemoteNotifications()
           }) 
        }
   }
}else{
    // Below iOS 10.0

    let settings = UIUserNotificationSettings(types: [.sound, .alert, .badge], categories: nil)
    UIApplication.shared.registerUserNotificationSettings(settings)

    //or
    //UIApplication.shared.registerForRemoteNotifications()
}

Delegate methods

@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {

}

@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {

}


func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    // .. Receipt of device token
}


func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
    // handle error
}

Disable Push Notification:

UIApplication.shared.unregisterForRemoteNotifications()
Share:
31,691

Related videos on Youtube

Sameera Chathuranga
Author by

Sameera Chathuranga

Professional in Swift, Objective C, React Native CSS,LessCSS HTML, Photoshop, Illustrator, Git

Updated on July 09, 2022

Comments

  • Sameera Chathuranga
    Sameera Chathuranga almost 2 years

    I have a iphone app which is enable to receive push notifications. Currently i can disable push notifications for my app by going to the iphone settings/Notifications.

    But i want to add a switch or button inside my app to enable or disable push notifications.

    It can be done because i saw it in foursqure iphone app did it. They got a section in settings call notification settings and user can enable or disable different kind of notification for the app.

    I look all over the net to find a proper solution for this but still not found a way. Can any one please give any idea how to do that ?

    Thanks in advance :)

    • Anil
      Anil over 10 years
      Is this allowed by Apple?
    • shaqir saiyed
      shaqir saiyed over 6 years
      @Anil me too looking for same , but still not got any clear answer on this.
  • Tony Million
    Tony Million almost 12 years
    As the answer below states, calling unregisterForRemoteNotificationTypes will halt delivery of push notifications - I have tested this on my app on user logout and it does work.
  • Anil
    Anil over 10 years
    Is this allowed by Apple?
  • nmr
    nmr about 10 years
    This still is subject to the Notification Center settings though, right?
  • Matthias
    Matthias over 7 years
    As @TiagoAlmeida said, it is not longer working on iOS10 and also not recommended by Apple. They say in their docs that unregisterForRemoteNotificationTypes should be only used in rare occasions, like totally disable notifications for your app
  • shaqir saiyed
    shaqir saiyed over 6 years
    so you mean to say you have one Enable/Disable button inside your App's settings and you are enabling and disabling notifications using this code, right ? is it working ? does apple approve this ?