Is it possible to receive notification data when app is terminated without notification being pressed?
I'm using
func application( _ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any]) {}
It works fine if the app is in foreground or background, but it has no effect if the app is terminated, so my question is it possible to handle notification data in a delegate if app is terminated and how?
Thanks.