iOS

Перш ніж розпочати інтеграцію з iOS, переконайтеся, що налаштування Налаштування - Firebase було повністю завершено.

  1. Увімкніть функцію Пуш-сповіщення у Додаток > Підписання та можливості > + Можливості > Пуш-сповіщення. Також переконайтеся, що ви надали Ідентифікатор збірки відповідно до вашого профілю забезпечення (перевірте Програми для розробників Apple, якщо у вас його немає).

    Примітка

    Push-сповіщення доступні з iOS 10 або macOS 10.12 і новіших версій.

  2. Помістіть GoogleService-Info.plist прямо в корінь каталогу, як показано нижче: move config

  3. Додайте CocoaPods до проекту:

    1. Ініціалізуйте:
      pod init
      
    2. Додати до Podfile:

      pod 'Firebase/Analytics'
      pod 'Firebase/Messaging'
      
      pod 'Firebase/Messaging'
      
    3. Встановіть залежності:

      pod install
      

    4. Інтеграція Firebase SDK.
    5. Імпортуйте Firebase до вашого UIApplicationDelegate (AppDelegate):

      імпортувати Firebase 
      
      @import Firebase;
      
    6. Налаштувати екземпляр Firebase в методі application з параметрами application:didFinishLaunchingWithOptions:, по суті, це func application( _ application: UIApplication, didFinishLaunchingWithOptions запускOptions: [UIApplication.LaunchOptionsKey: Any]?) з методом:

      Firebase.configure()
      
      [FIRApp configure];
      
    7. Налаштуйте програму на отримання віддалених сповіщень за допомогою UNUserNotificationCenter:

      func application(
        _ application: UIApplication,
        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
      ) -> Bool {
        FirebaseApp.configure()
        Messaging.messaging().delegate = self
        UNUserNotificationCenter.current().delegate = self
      
        нехай authOptions: UNAuthorizationOptions = [.alert, .badge, .sound].
        UNUserNotificationCenter.current().requestAuthorization(
          options: authOptions,
          completionHandler: { _, _ in }
        )
      
        application.registerForRemoteNotifications()
        return true
      }
      

    8. Налаштуйте додаток для отримання токенів пристроїв. Вставте код в AppDelegate:

      func messaging(_ messaging: Messaging, didReceiveRegistrationToken fcmToken: String) { // встановлюємо опцію моніторингу регенерації токенів.
          // встановити опцію для моніторингу регенерації токенів
          let dataDict: [String: String] = ["token": fcmToken].
          NotificationCenter.default.post(
              name: Notification.Name("FCMToken"),
              object: nil,
              userInfo: dataDict
          )
          // надсилаємо запит до методу NeuCurrent для реєстрації токену згідно з інтерфейсом NeuCurrent API Swagger UI
      }
      

    Відправлення запиту за допомогою NeuCurrent API

    Зверніть увагу, що в коді потрібно відправити HTTP-запит до NeuCurrent API з отриманим токеном пристрою на https://app.neucurrent.com/push/api/v1/device-token/add. Документи: https://app.neucurrent.com/push/api/v1/docs.

  4. Додати можливість отримання зображення:

    1. Додайте нову ціль: Файл > Новий > Ціль > Розширення служби сповіщень.
    2. Додати до Підфайлу:
      target 'YourNotificationServiceExtensionTargetName' do
        pod 'Firebase/Messaging'
      кінець
      
      1. Змініть файл NotificationService.swift, як показано нижче:
        NotificationService.swift
         1
         2
         3
         4
         5
         6
         7
         8
         9
        10
        11
        12
        13
        14
        15
        16
        17
        18
        19
        20
        21
        22
        23
        24
        25
        import UserNotifications
        import FirebaseMessaging
        
        class NotificationService: UNNotificationServiceExtension {
        
            var contentHandler: ((UNNotificationContent) -> Void)?
            var bestAttemptContent: UNMutableNotificationContent?
        
            перевизначити функцію didReceive(_запит: UNNotificationRequest, withContentHandler contentHandler: @escaping (UNNotificationContent) -> Void) { })
                self.contentHandler = contentHandler
                bestAttemptContent = request.content.mutableCopy() as? UNMutableNotificationContent
                guard let bestAttemptContent = bestAttemptContent else { return }
                FIRMessagingExtensionHelper().populateNotificationContent(bestAttemptContent, withContentHandler: contentHandler)
        
            }
        
            override function serviceExtensionTimeWillExpire() { // Викликається безпосередньо перед закінченням терміну дії продовження
                // Викликається безпосередньо перед тим, як розширення буде завершено системою.
                // Використовуйте це як можливість доставити вашу "найкращу спробу" модифікованого контенту, інакше буде використано оригінальне корисне навантаження push.
                if let contentHandler = contentHandler, let bestAttemptContent = bestAttemptContent {
                    contentHandler(bestAttemptContent)
                }
            }
        
        }
        
  5. Вітаю вас! Ви завершили процес інтеграції. Повний приклад:

    AppDelegate.swift
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    import UIKit
    import Firebase
    
    @available(iOS 10.0, *)
    @UIApplicationMain
    class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterDelegate, MessagingDelegate { {\i1
      func application(
        _ application: UIApplication,
        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
      ) -> Bool {
        FirebaseApp.configure()
        Messaging.messaging().delegate = self
        UNUserNotificationCenter.current().delegate = self
    
        нехай authOptions: UNAuthorizationOptions = [.alert, .badge, .sound].
        UNUserNotificationCenter.current().requestAuthorization(
          options: authOptions,
          completionHandler: { _, _ in }
        )
    
        application.registerForRemoteNotifications()
        return true
      }
    
      func messaging(_ messaging: Messaging, didReceiveRegistrationToken fcmToken: String) { } }
        // встановити опцію для моніторингу регенерації токенів
        let dataDict: [String: String] = ["token": fcmToken].
        NotificationCenter.default.post(
          name: Notification.Name("FCMToken"),
          object: nil,
          userInfo: dataDict
        )
         // надсилаємо запит до методу NeuCurrent для реєстрації токену згідно зі Swagger UI
      }
    }
    

Додаткові джерела: