Important
Version 2.0.1 Breaking changes
-
To be able to use v2.0.1 you will need to add AppGroups capability to your project.
-
Check Add required capabilities and Create Notification Service Extension sections for further instructions.
-
Also recommended: implementation of PPG.registerNotificationDeliveredFromUserInfo() in AppDelegate. Check examples below.
Tutorial: https://docs.pushpushgo.company/application/providers/mobile-push/apns
Open AppDelegate.swift file Add required imports
import UserNotifications
import PPG_framework
Add initialization code to given functions
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
// Initialize PPG framework
PPG.initializeNotifications(projectId: "<your_app_id>", apiToken: "<your_api_token>", appGroupId: "<your_app_group_id>")
// Register for push notifications if you do not already
PPG.registerForNotifications(application: application, handler: { result in
switch result {
case .error(let error):
// handle error
print(error)
return
case .success:
return
}
})
UNUserNotificationCenter.current().delegate = self
return true
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
PPG.sendEventsDataToApi()
}
func application(_ application: UIApplication,
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
PPG.sendDeviceToken(deviceToken) { _ in }
}
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
// Send a delivery event to your server
PPG.registerNotificationDeliveredFromUserInfo(userInfo: userInfo) { status in
print(status);
}
completionHandler(.newData)
}
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
// Display notification when app is in foreground, optional
completionHandler([.alert, .badge, .sound])
}
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
// Send information about clicked notification to framework
PPG.notificationClicked(response: response)
// Open external link from push notification
// Remove this section if this behavior is not expected
guard let url = PPG.getUrlFromNotificationResponse(response: response)
else {
completionHandler()
return
}
UIApplication.shared.open(url)
//
completionHandler()
}
Create AppDelegate.swift file
import Foundation
import UIKit
import UserNotifications
import PPG_framework
class AppDelegate: NSObject, UIApplicationDelegate, UNUserNotificationCenterDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
// Initialize PPG
PPG.initializeNotifications(projectId: "YOUR PROJECT ID", apiToken: "YOUR API KEY", appGroupId: "YOUR APP GROUP ID")
// Register for notifications
PPG.registerForNotifications(application: application) { result in
switch result {
case .error(let error):
print(error)
return
case .success:
print("Successfully registered")
return
}
}
UNUserNotificationCenter.current().delegate = self
return true
}
func applicationDidBecomeActive(_ application: UIApplication) {
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
PPG.sendEventsDataToApi()
}
func application(_ application: UIApplication,
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
PPG.sendDeviceToken(deviceToken) { _ in }
}
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
// Send a delivery event to your server
PPG.registerNotificationDeliveredFromUserInfo(userInfo: userInfo) { status in
print(status);
}
completionHandler(.newData)
}
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
// Display notification when app is in foreground, optional
completionHandler([.banner, .badge, .sound])
}
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
// Send information about clicked notification to framework
PPG.notificationClicked(response: response)
// Open external link from push notification
// Remove this section if this behavior is not expected
guard let url = PPG.getUrlFromNotificationResponse(response: response)
else {
completionHandler()
return
}
UIApplication.shared.open(url)
//
completionHandler()
}
}
Now you will have to inject that AppDelegate to your mainApp.swift file
import SwiftUI
@main
struct iOS_example_integrationApp: App {
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate: AppDelegate
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
- Click on top item in your project hierarchy.
- Select your project on target list.
- Select
Signing & Capabilities
. - You can add capability by clicking on
+ Capability
button that is placed underSigning & Capabilities
button. - Add
Background Modes
capability unless it is already on your capability list. Then selectRemote notifications
. - Add
Push notifications
capability unless it is already on your capability list. - Add
App Groups
. You can use your default app group ID or add new one. - Make sure that your
Provisioning Profile
has required capabilities. If you didn't add them while creating Provisioning Profile for your app you should go to your Apple Developer Center to add them. Then refresh your profile in Xcode project.
How to add new group to your provisioning profile?
Go to Apple developers and navigate to Certificates, Identifiers & Profiles. Then go to Identifiers and in the right corner change App IDs to AppGroups. You can add new group here.
Now you can go back to Identifiers, choose your app identifier and add AppGroup capability. Remember to check your new group.
- Open your Xcode project
- Go to
File -> New -> Target
. - Select
Notification Service Extension
. - Choose a suitable name for it (for example
PPGNotificationServiceExtension
). - Open
NotificationService.swift
file. - Change
didReceive
function to: (use dispatch_group here to make sure that extension returns only when delivery event is sent and notification content is updated) - Click on top item in your project hierarchy and select your NotificationExtension on target list
- Similarly to your project, add App Group capability to your NotificationExtension and check group you want to use.
- In your NotificationService extension, in didReceive function set your app group ID.
override func didReceive(_ request: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) {
self.contentHandler = contentHandler
self.bestAttemptContent = (request.content.mutableCopy() as? UNMutableNotificationContent)
guard let content = bestAttemptContent else { return }
// Wait for delivery event result & image fetch before returning from extension
let group = DispatchGroup()
group.enter()
group.enter()
// Dynamically set app group ID for your app
SharedData.shared.appGroupId = "YOUR APP GROUP ID"
PPG.notificationDelivered(notificationRequest: request) { _ in
group.leave()
}
DispatchQueue.global().async { [weak self] in
self?.bestAttemptContent = PPG.modifyNotification(content)
group.leave()
}
group.notify(queue: .main) {
contentHandler(self.bestAttemptContent ?? content)
}
}
let beacon = Beacon()
beacon.addSelector("Test_Selector", "0")
// Methods with strategy and ttl support
// For append tag in concrete category (with ttl, default = 0)
beacon.appendTag("mytag", "mycategory")
beacon.appendTag("mytag", "mycategory", 3600)
// For rewrite tag in concrete category (with ttl, default = 0)
beacon.rewriteTag("mytag", "mycategory")
beacon.rewriteTag("mytag", "mycategory", 3600)
// For delete tag in concrete category (with ttl, default = 0)
beacon.deleteTag("mytag", "mycategory");
// Legacy methods (not supports strategy append/rewrite and ttl)
beacon.addTag("new_tag", "new_tag_label")
beacon.addTagToDelete(BeaconTag(tag: "my_old_tag", label: "my_old_tag_label"))
beacon.send() { result in }
PPG.unsubscribeUser { result in ... }
Event's purpose is to tell API about newly received notifications. You should send events every time when user:
-
Received notification in extension
PPG.notificationDelivered(notificationRequest: UNNotificationRequest, handler: @escaping (_ result: ActionResult)
-
Click on notification
PPG.notificationClicked(response: UNNotificationResponse)
-
Click button inside notification
PPG.notificationButtonClicked(response: response, button: 1)
Available values for button
are 1
and 2