iOS update push in content extension
问题 iMessage updates the rich push when it's on the screen. You can see what is user is typing RIGHT NOW, and message will be added to your conversation. So the question is: how i can catch new push notification, when i'm already looking at opened rich push? Is there any event in UNNotificationContentExtension to catch the new one and update view? The only one i know is: - (void)didReceiveNotification:(UNNotification *)notification but it is triggered only when you open the push first time Edit: