iOS
Send Push Notifications

from client side (Swift)

11min

Send push notifications from client side in Swift

Introduction

This section explains how you can send push notifications through your iOS client with Back4App.

This is how it will look like:

Document image
ļ»æ

At any time, you can access the complete Project built with this tutorial at our GitHub repository.

Prerequisites

To complete this quickstart, you need:

Going forward we are going to assume you have completed all steps of the Back4App Push Notifications via Dashboard tutorial, even if you use the iOS Project built with this tutorial that is available at our GitHub repository. You should have basic push notifications working and also be able to send pushes out via the admin console.

1 - Enable Client Push

  1. Go to Back4App Website. log in, find your app and click on Server Settings.
  2. Find the ā€œCore Settingsā€ block and click on SETTINGS. The ā€œCore Settingsā€ block looks like this:
Document image
ļ»æ

3. Scroll to the end of the page and click on the EDIT DETAILS button, as shown below:

Document image
ļ»æ

4. You will see a checkbox called Allow Push Notification from Client in the end of the edit page, tick that box and click on the SAVE button, as shown below:

Document image
ļ»æ

2 - Subscribe your device to the News channel

  1. Assuming you have completed the Back4App Push Notifications via Dashboard tutorial, you will want to modify the completed project from that tutorial or download it from our GitHub repository. First, you will add a channel to your Installation object. You are going to do this by altering the method createInstallationOnParse in your AppDelegate file. Open your projectā€™s AppDelegate.swift file and add the following line of code - ā€˜Installation setObject([ā€News1ā€] forKey:ā€channelsā€];ā€™ - which will set the installation objectā€™s channel array to contain one channel called News.
AppDelegate.m
ļ»æ

This will allow you to send a message to everyone who subscribes to the channel called News via cloud code

Make sure your version of didRegisterForRemoteNotificationsWithDeviceToken is the same as the code below.

2. Next, we will add a method to your app delegate to send a push to the News channel everytime the app launches. Open your projectā€™s AppDelegate.swift file and the method below and make sure this method is fired off everytime the app launches by calling it from didFinishLaunchingWithOptions.

AppDelegate.m
ļ»æ

3 - Test that you can send targeted push notifications to yourself via the client

Open your app from the simulator while leaving your physical device closed with the lock screen on.

You should see the pushes appear on your deviceā€™s lock screen as soon as the app opens on the simulator.

Document image
ļ»æ

Final Thoughts

You should have a firm understanding of how to send pushes from the client.

You can combine it with a pfquery to target users based on some sort of property like age, location, or object id.

Just remember that if client push is enabled it can be exploited and canā€™t be turned off without restricting all client pushes. Itā€™s recommended that you tick to pushes from Cloud Code, but itā€™s still good to know.

Itā€™s done!

At this stage, you can send push notifications using Client Push through Back4App!