Custom Push Notification with image and interactions on iOS - Swift 4

Lucas Goes Valle
9 min readMar 20, 2018

--

When I created my first custom notification, I read many articles and videos and it was a bit tricky at first, so the intent of this tutorial is to centralize everything to make this process easier.

Let's start creating a Single View App or use an existing one. Put the name of your project and select your Team, is important to have a team in this case because will be necessary to create your app id, certificates, and APNs to send push, without that you will not be able to do this tutorial.

1. Setting your Capabilities in your xcodeproj

Go to your xcodeproj in xcode, select Capabilities, and turn ON Push notifications and Background Modes > Remote Notifications like the image below. Xcode will create for you your app id in the apple developer.

2. Generating APNs to send notifications.

In the Apple Developer after logging in, go to:
Certificates, Identifiers & Profiles > Identifiers > App IDs > Select your app id app and click in edit to configure push notifications:

Open your app id and press Edit, and in the edit page go to Push Notification area and press Create Certificate…

Follow the steps and download the certificate generated (aps_development.cer), open the certificate and add your keys.

3. Optional Step: Generating a .pem to send push notification by a web server.

There some tools to test the push notification, but if you need a .pem file I’ll explain below how to proceed, if not just move to step 4.

Open the keychain access, and export your p12 file:

Create a password and save your file. Go to the terminal open the folder of your certificate, and run the command put the created password and you will have .pem file.

openssl pkcs12 -in cert.p12 -out pushcertdev.pem -nodes -clcerts

If you have some doubt about this part check this StackOverflow link with a very good step by step:

4. Request Authorization to send push to the user.

In my project, the minimum iOS version will be 9.0, but the custom push notification will work just in the 10.0.

First import UserNotification

Call didRegisterForRemoteNotificationsWithDeviceToken and didFailToRegisterForRemoteNotificationsWithError to get the device token or some failure that may happen.

Request user permission for send push, creating a method to do this and call this method in the didFinishLaunchingWithOptions.

Your AppDelegate file will be like this:

Nice!! The request authorization it's done!

5. Send a normal push to test the last step.

Now run your app with the right certificated, can be in Automatically manage signing, the xcode will get the right certificate for you or you can put manual if not works.
After running, put your app in the background. We will use a tool to send push, its simple and fast to test, download and install NWPusher.

After install open and select the right certificate to send push for your application, will be like this:

Now get the device token from your log console and put in the Device push token field and press Push. Your device(needs a real device) will receive the push if everything is working correctly. If not check your Capabilities, AppDelegate, APNs certificates and your signing certificate.

6. Handling notification interactions and show notification with open app

Create a NSObject class, in my case, the name of the class will be SampleNotificationDelegate, after create a class import UserNotifications and UserNotificationsUI , add the UNUserNotificationCenterDelegate protocol and call willPresent and didReceive methods, like this:

After that, let go back to AppDelegate, and create a constant of the SampleNotificationDelegate:

And in configureNotification method we will set the delegate of UNUserNotificationCenter to our notificationDelegate, like this:

After this changes build your app, and put a breakpoint in didReceive method, with your app open, send a new push from NWPusher, and the push will be shown in your screen even though your app is open, click in the push and your breakpoint will be called.

Nice work, if you get to this part with success in the next step we will start to customize our push.

7. Create a Custom Push Notification (Using Notification Service Extension and Notification Content Extension).

We will use the UNNotificationCategory to defines a type of notification that your executable can receive, as this is possible to customized a specific push notification.
In our configureNotification method, we will add the UNNotificationCategory and UNNotificationAction for our custom push. Just add the following code to your method too.

Now go to your xcodeproj in xcode > Add Target > Notification Service Extension >Next > Finish > Activate Scheme Content and repeat the same step to Notification Content Extension.

In the end will be like this:

Go to your Content folder, the info.plist file will be like this:

Now we need to change the UNNotificationExtensionCategory to Array and put our category to works.

Add UNNotificationExtensionDefaultContentHidden and set to true to show only our custom view controller in the notification interface.

Add UNNotificationExtensionInitialContentSizeRatio and set to 0 to be an initial size of our view controller in the notification interface.

Your info.plist, in the end, will be like this:

This configuration is to show a custom view controller when the user uses a 3D touch or press to see de details of the notification.

Go back to the NWPusher, but now the new body for the push need to have two new parameters, “category”:”CustomSamplePush” the same of your category in the project and “mutable-content”:”1".

Is important to check if the body it’s right, copy and paste the json from here.

The result of the push will be this, the first is with the category and mutable-content, and the second is without these parameters, the normal notification, and the custom:

When you use the 3d touch in the push notification or swipe to left and press see you can see a custom notification view controller.

Nice!! Everything is configured and working if you get the same result. In the service extension you can change the notification, your title, content and put an image in the right side, and to change the details of the notification you need to go to the content extension, there is a storyboard to create a custom layout and create whatever you want.

If you can debug the content or service, build the project from the target of the content or the server.

Now to show a picture in the notification we will use a UNNotificationAttachment, but to be more realist, we will send the picture by the push and download before rendering the notification, for this is important use small images, because large images cannot be downloaded in time.

In your Notification Service Extension, go to NotificationService.swift and create an extension of UNNotificationAttachment, like this:

Now we need to get the image from the push, download and show in the push.

The complete NotificationService.swift file:

Use this body in your push to receive an image, download, and show:

Important: note that the image URL is HTTPS if you need to show an HTTP image URL, go to plist.info of the Notification Service Extension and permit the domain or permit every domain.

or

Nice! In this moment do you have your custom push notification with a image and now you can go to customize the detail of your push, for do this go to your Notification Content Extension, and open the MainInterface.storyboard to put an UIImageView and customize the content, in the storyboard there is ViewController and we can put the components of the iOS library.

If you check in the NotificationViewController there is a didReceive method from UNNotificationContentExtension protocol, and in this method, we can get the content of the push, like we did in the Notification Service.

So we will create a method to download an image and show the image in the details of push, you can use a Library to download this image, create your own method or whatever. I will create an extension of URLSession to download the image, will be like this:

After that, we need to get the URL image from the push and download the image. Remember, if you need to download an image from HTTP add the same thing of Notification Service Extension in your plis.file.
Create a UIImageView in the storyboard and your outlet.

Remember to add @available(iOSApplicationExtension 10.0, *) on didReceive.

After that in didReceive method, get the content from the push, download the image and set in the UIImageView, the final ViewController will be like this:

Then we can send another push and check the final result.

If you have succeeded so far, we have successfully completed the entire tutorial and you can now customize the custom push detail any way you want.

The Final Project will be available to checkout in git.

Thanks and Good Luck!!!

7. If you push is not arriving successfully, check these possibilities:

Some possibles problem that can occur when the push not arrive:

  • Refresh the Push selected in the NWPusher tool.
  • Check the body of the push, open the NWPusher and send the push with the default body to be sure that the problem is not your push body.
  • Check your device token, delete and install again the app to get a new device token.
  • Check the certificates, go your keychains and check the APNs device
  • Create a Development provision profile, download and put manually in your project to make a build using the right certificated

--

--