Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Handling user notifications on iOS 10

I have troubles determining when the user taps on a user push notification on iOS 10.

So far, I have been using the -[UIApplicationDelegate application:didReceiveRemoteNotification:fetchCompletionHandler:] which is called when

  • Case 1: the application is active and the push is received
  • Case 2: when the user launched the app after taping a received notification

This method comments explicitly say

Note that this behavior is in contrast to application:didReceiveRemoteNotification:, which is not called in those cases, and which will not be invoked if this method is implemented.

All this work as expected.

Now iOS 10 deprecated this delegate method and introduced the UserNotification framework which I cannot use because I'm still targeting iOS 8 and 9.

When my app is running on iOS 10 and a push is received while the app is active (Case 1), the -[AppDelegate application:didReceiveRemoteNotification:fetchCompletionHandler:] is called correctly.

Again on iOS 10, when the user starts the app by tapping a notification (Case 2) this method is not called.

I realise that when I implement the older -[UIApplicationDelegate application:didReceiveRemoteNotification:] it is the one that gets called in the Case 2

On iOS 8 and 9, in the Case 2 it is the -[AppDelegate application:didReceiveRemoteNotification:fetchCompletionHandler:] method is called.

Does it mean that I have to update my application and implement the older delegate just for iOS 10?

So the question is, what is the proper implementation of handling the user interaction of a received push on iOS 10 without using the UserNotification framework.

cheers, Jan

like image 466
Jan Avatar asked Aug 14 '16 07:08

Jan


People also ask

How do I manage notifications in iOS?

Go to Settings and tap Notifications. Select an app under Notification Style. Under Alerts, choose the alert style that you want. If you turn on Allow Notifications, choose when you want the notifications delivered — immediately or in the scheduled notification summary.

How do I see old notifications on iOS 10?

Find your notifications in Notification CenterOn the Lock Screen: Swipe up from the middle of the screen. On other screens: Swipe down from the top center. Then you can scroll up to see older notifications, if there are any.


1 Answers

Swift code for iOS 10:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {     // Override point for customization after application launch.      if #available(iOS 10.0, *) {         let center = UNUserNotificationCenter.currentNotificationCenter()         center.delegate = self     }      // ...      return true }  @available(iOS 10.0, *) func userNotificationCenter(center: UNUserNotificationCenter, didReceiveNotificationResponse response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void) {      print(response.notification.request.content.userInfo)         }  @available(iOS 10.0, *) func userNotificationCenter(center: UNUserNotificationCenter, willPresentNotification notification: UNNotification, withCompletionHandler completionHandler: (UNNotificationPresentationOptions) -> Void) {      print(notification.request.content.userInfo) } 
like image 64
Adam Bardon Avatar answered Sep 20 '22 18:09

Adam Bardon