I'm using the new UNUserNotification
framework in iOS 10. I can see how to add action buttons, but how do I respond when the user taps the notification itself? In my case, it will be an image with some text.
The default behavior is that the application opens.
Can I have custom code that detects if my application is being opened because of a
UNUserNotification
tap, and ideally with identifier information about the notification tapped?Will these work if my app is running in the background or closed?
UNUserNotification
documentation suggests setting the delegate ofUNUserNotificationCenter
, but I think this only works if the app is running.