When receiving a remote push notification as the application is in the background, the app enters applicationDidBecomeActive. From there, how can I access the NSDictionary of data from the notification?
When receiving a remote push notification as the application is in the background, the
Share
The notification data is delivered to your app in
application:didReceiveRemoteNotification:. If you want to process it inapplicationDidBecomeActive:you should store it inapplication:didReceiveRemoteNotification:and read it again inapplicationDidBecomeActive.