iOS push notification: how to detect if the user tapped on notification when the app is in background? iOS push notification: how to detect if the user tapped on notification when the app is in background? ios ios

iOS push notification: how to detect if the user tapped on notification when the app is in background?


OK I finally figured out.

In the target settings ➝ Capabilities tab ➝ Background Modes, if you check "Remote Notifications", application:didReceiveRemoteNotification: will get triggered as soon as notification arrives (as long as the app is in the background), and in that case there is no way to tell whether the user will tap on the notification.

If you uncheck that box, application:didReceiveRemoteNotification: will be triggered only when you tap on the notification.

It's a little strange that checking this box will change how one of the app delegate methods behaves. It would be nicer if that box is checked, Apple uses two different delegate methods for notification receive and notification tap. I think most of the developers always want to know if a notification is tapped on or not.

Hopefully this will be helpful for anyone else who run into this issue. Apple also didn't document it clearly here so it took me a while to figure out.

enter image description here


I've been looking for the same thing as you and actually found a solution that does not require remote notification to be ticked off.

To check whether user has tapped, or app is in background or is active, you just have to check the application state in

-(void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler{    if(application.applicationState == UIApplicationStateActive) {        //app is currently active, can update badges count here    }else if(application.applicationState == UIApplicationStateBackground){        //app is in background, if content-available key of your notification is set to 1, poll to your backend to retrieve data and update your interface here    }else if(application.applicationState == UIApplicationStateInactive){        //app is transitioning from background to foreground (user taps notification), do what you need when user taps here    }

For more info check:

UIKit Framework Reference > UIApplication Class Reference > UIApplicationState


According to iOS / XCode: how to know that app has been launched with a click on notification or on springboard app icon?you have to check for the application state in didReceiveLocalNotification like this:

if ([UIApplication sharedApplication].applicationState == UIApplicationStateInactive){    // user has tapped notification}else{    // user opened app from app icon}

Although it does not make totally sense to me, it seems to work.