Local notifications won't pop out when the app is running but will when the app is in the background

348 Views Asked by At

I have checked that all the notifications are scheduled correctly at the NotificationCenter. And, I have the completionHandler([.alert, .badge, .sound]) code in my app delegate to make sure the notifications will show up even when the user is using the app.

The result is notifications will show only the app is in the background, not the other way.

2

There are 2 best solutions below

1
On

Did you handle the local notifications in app delegate like this?

func application(application: UIApplication, didReceiveLocalNotification notification: UILocalNotification) {
    // Do something you want
    println("Received Local Notification:")
    println(notification.alertBody)
}

Above is for local notifications and there is another method for hadle remote notifications,

func application(application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject], fetchCompletionHandler completionHandler: (UIBackgroundFetchResult) -> Void) {
// Do something you want
}

Make sure you are handling the local notifications using local notification method.

0
On

Please try this:

extension AppDelegate: UNUserNotificationCenterDelegate {
    func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
        completionHandler([.alert, .sound])
    }
}

You can find Apple doc here.

What I have understood is, whatever options I send to completionHandler will happen.

If you send just .alert, it will just show the alert If you send just .sound, it will just play the sound specified by notification.

And will do both if we send both options.

And will do nothing if we don't send any parameter.

So what you need to do is send parameter as .alert.

In didFinishLaunchingWithOptions you will also need to add

UNUserNotificationCenter.current().delegate = self