Rich Push Notification
Overview
With the introduction of iOS 10, rich push notifications have made their way into the iOS ecosystem. This exciting feature allows you to enhance your push notifications by incorporating engaging multimedia elements such as images, videos, audio, or GIFs.
Rich push notifications offer a convenient way to provide users with quick interactions that don’t require them to launch the entire app. This highlights the increasing significance of notifications in shaping an app’s overall user experience.
Rich push notifications leverage the power of Notification Service and Notification Content extensions to enrich the user experience. These extensions are separate and unique components embedded within your app bundle.
Enabling Rich Push Notification support
When a new push notification arrives, the system first invokes your notification service extension to customize the payload and include media attachments for display. The notification content extension comes into play by providing a custom interface to present your app’s notifications in a visually appealing and interactive manner. Together, these extensions work seamlessly to deliver captivating and dynamic push notifications to your app’s users.
Adding Notification Service Extension
Step 1: Adding the Notification Service Extension to your Xcode Project
- Open your Xcode project.
- Go to File -> New -> Target.
- Select “Notification Service Extension” under the “iOS” category.
- Click “Next” and provide a name for your extension (e.g., “MyNotificationServiceExtension”).
- Choose the appropriate settings for your extension and click “Finish”.
- Xcode will generate the necessary files for the Notification Service Extension.
Step 2: Importing the CastledNotificationService Framework
Import the CastledNotificationService framework by adding the below entry in the Podfile
Step 3: Set the App Group ID
3.1 First, set the App Groups for the main target by referring here.
3.2 Enable App Groups for your notification service extension target and use the same App Group ID that was selected for the app target (as mentioned in the previous steps).
Step 4: Implementing the Notification Service Extension
In your Notification Service Extension code file, inherit from the CastledNotificationServiceExtension class provided by the CastledNotificationService framework.
Customize the notification handling logic in the overridden methods of MyNotificationServiceExtension class.
Override the didReceive(_:withContentHandler:) method to modify the notification content if needed.
Override the serviceExtensionTimeWillExpire() method to handle situations when the service extension time is about to expire.
Please refer to the official Apple documentation for further details on working with Notification Service Extensions
Adding Notification Content Extension
Step 1: Adding the Notification Content Extension to your Xcode Project
- Open your Xcode project.
- Go to File -> New -> Target.
- Select “Notification Content Extension” under the “iOS” category.
- Click “Next” and provide a name for your extension (e.g., “MyNotificationContent”).
- Choose the appropriate settings for your extension and click “Finish”.
- Xcode will generate the necessary files for the Notification Service Extension.
Step 2: Configuring the Info.plist File
- Open the Info.plist file of your Notification Content Extension target.
- Add the following key-value pair:
Key | Value |
---|---|
UNNotificationExtensionCategory | CASTLED_PUSH_TEMPLATE |
UNNotificationExtensionInitialContentSizeRatio | 1 |
UNNotificationExtensionDefaultContentHidden | YES |
UNNotificationExtensionUserInteractionEnabled | YES |
Configure the Notification Categories & actions and use the same for configuring UNNotificationExtensionCategory. The required categories can be added as an array.
Step 3: Importing the CastledNotificationContent Framework
Import the CastledNotificationContent framework by adding the below entry in the Podfile
Step 4: Set the App Group ID
4.1 First, set the App Groups for the main target by referring here.
4.2 Enable App Groups for your notification content extension target and use the same App Group ID that was selected for the app target (as mentioned in the previous steps).
Step 5: Implementing the Notification Content Extension
In your NotificationViewController file, inherit from the CastledNotificationViewController class provided by the CastledNotificationContent framework.
Customize the notification handling logic in the overridden methods of NotificationViewController class.
Override the viewDidLoad() and didReceive() methods to modify the notification content if needed.