Hi there,
I just have a problem about notification in iOS 10.2.1:
When the app is killed (not run in background mode), then when a notification comes, I tap into notification, app will open, but insteads of calling
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptionsthe system call first this method:
(void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandlerthen, didFinishLaunchingWithOptions is called.
That's weird as the documentation says that didFinishLaunchingWithOptions will be called firstly with notification info placed in launchOptions parameter.
So, Did anyone experience this problem? Please help!
Thank you!