How can we intercept remote push notification and change its content before it gets displayed in the notification center?

Viewed 121

I want to change the content of the notification before the notification gets displayed in the notification drawer. Is there a way to achieve this?

1 Answers

isn't that what UNNotificationServiceExtension does?

Right in the description it says

UNNotificationServiceExtension object provides the entry point for a notification service app extension. This object lets you customize the content of a remote notification before the system delivers it to the user.

Related