Depois que seu aplicativo cliente estiver instalado em um dispositivo, ele poderá receber mensagens por meio da interface de APNs do FCM. Você pode começar imediatamente a enviar notificações para segmentos de usuários com o Notifications Composer ou mensagens criadas em seu servidor de aplicativos.
Lidar com notificações de alerta
O FCM entrega todas as mensagens direcionadas aos aplicativos da Apple por meio de APNs. Para saber mais sobre como receber notificações de APNs por meio do UNUserNotificationCenter, consulte a documentação da Apple sobre como lidar com notificações e ações relacionadas a notificações .
Você deve definir o delegado UNUserNotificationCenter e implementar os métodos delegados apropriados para receber notificações de exibição do FCM.
Rápido
extension AppDelegate: UNUserNotificationCenterDelegate { // Receive displayed notifications for iOS 10 devices. func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification) async -> UNNotificationPresentationOptions { let userInfo = notification.request.content.userInfo // With swizzling disabled you must let Messaging know about the message, for Analytics // Messaging.messaging().appDidReceiveMessage(userInfo) // ... // Print full message. print(userInfo) // Change this to your preferred presentation option return [[.alert, .sound]] } func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse) async { let userInfo = response.notification.request.content.userInfo // ... // With swizzling disabled you must let Messaging know about the message, for Analytics // Messaging.messaging().appDidReceiveMessage(userInfo) // Print full message. print(userInfo) } }
Objetivo-C
// Receive displayed notifications for iOS 10 devices. // Handle incoming notification messages while app is in the foreground. - (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler { NSDictionary *userInfo = notification.request.content.userInfo; // With swizzling disabled you must let Messaging know about the message, for Analytics // [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; // ... // Print full message. NSLog(@"%@", userInfo); // Change this to your preferred presentation option completionHandler(UNNotificationPresentationOptionBadge | UNNotificationPresentationOptionAlert); } // Handle notification messages after display notification is tapped by the user. - (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler { NSDictionary *userInfo = response.notification.request.content.userInfo; if (userInfo[kGCMMessageIDKey]) { NSLog(@"Message ID: %@", userInfo[kGCMMessageIDKey]); } // With swizzling disabled you must let Messaging know about the message, for Analytics // [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; // Print full message. NSLog(@"%@", userInfo); completionHandler(); }
Se você quiser adicionar ações personalizadas às suas notificações, defina o parâmetro click_action
na carga útil da notificação . Use o valor que você usaria para a chave category
na carga de APNs. As ações personalizadas devem ser registradas antes de serem usadas. Para obter mais informações, consulte o Guia de programação de notificação local e remota da Apple.
Para obter informações sobre a entrega de mensagens no seu aplicativo, consulte o painel de relatórios do FCM , que registra o número de mensagens enviadas e abertas em dispositivos Apple e Android, juntamente com dados de "impressões" (notificações vistas pelos usuários) para aplicativos Android.
Lidar com notificações push silenciosas
Ao enviar mensagens com a chave content_available
(equivalente a content-available
dos APNs, as mensagens serão entregues como notificações silenciosas, ativando seu aplicativo em segundo plano para tarefas como atualização de dados em segundo plano. Ao contrário das notificações em primeiro plano, essas notificações devem ser tratadas por meio do application(_:didReceiveRemoteNotification:fetchCompletionHandler:)
.
Implemente application(_:didReceiveRemoteNotification:fetchCompletionHandler:)
conforme mostrado:
Rápido
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any]) async -> UIBackgroundFetchResult { // If you are receiving a notification message while your app is in the background, // this callback will not be fired till the user taps on the notification launching the application. // TODO: Handle data of notification // With swizzling disabled you must let Messaging know about the message, for Analytics // Messaging.messaging().appDidReceiveMessage(userInfo) // Print message ID. if let messageID = userInfo[gcmMessageIDKey] { print("Message ID: \(messageID)") } // Print full message. print(userInfo) return UIBackgroundFetchResult.newData }
Objetivo-C
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { // If you are receiving a notification message while your app is in the background, // this callback will not be fired till the user taps on the notification launching the application. // TODO: Handle data of notification // With swizzling disabled you must let Messaging know about the message, for Analytics // [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; // ... // Print full message. NSLog(@"%@", userInfo); completionHandler(UIBackgroundFetchResultNewData); }
As plataformas Apple não garantem a entrega de notificações em segundo plano. Para saber mais sobre as condições que podem causar falhas nas notificações em segundo plano, consulte a documentação da Apple sobre Como enviar atualizações em segundo plano para seu aplicativo .
Interpretando a carga útil da mensagem de notificação
A carga útil das mensagens de notificação é um dicionário de chaves e valores. As mensagens de notificação enviadas por meio de APNs seguem o formato de carga útil dos APNs conforme abaixo:
{ "aps" : { "alert" : { "body" : "great match!", "title" : "Portugal vs. Denmark", }, "badge" : 1, }, "customKey" : "customValue" }
Lidar com mensagens com método swizzling desativado
Por padrão, se você atribuir a classe de delegação de aplicativo do seu aplicativo às propriedades de delegação UNUserNotificationCenter
e Messaging
, o FCM irá misturar sua classe de delegação de aplicativo para associar automaticamente seu token FCM ao token de APNs do dispositivo e transmitir eventos de notificação recebidos para o Analytics. Se você desabilitar explicitamente o swizzling de método, se estiver criando um aplicativo SwiftUI ou se usar uma classe separada para qualquer delegado, você precisará executar ambas as tarefas manualmente.
Para associar o token FCM ao token de APNs do dispositivo, passe o token de APNs para a classe Messaging
no manipulador de atualização de token do delegado do aplicativo por meio da propriedade apnsToken
.
Rápido
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) { Messaging.messaging().apnsToken = deviceToken; }
Objetivo-C
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { [FIRMessaging messaging].APNSToken = deviceToken; }
Para passar informações de recebimento de notificação para o Analytics, use o método appDidReceiveMessage(_:)
.
Rápido
func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { let userInfo = notification.request.content.userInfo Messaging.messaging().appDidReceiveMessage(userInfo) // Change this to your preferred presentation option completionHandler([[.alert, .sound]]) } func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) { let userInfo = response.notification.request.content.userInfo Messaging.messaging().appDidReceiveMessage(userInfo) completionHandler() } func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) { Messaging.messaging().appDidReceiveMessage(userInfo) completionHandler(.noData) }
Objetivo-C
- (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler { NSDictionary *userInfo = notification.request.content.userInfo; [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; // Change this to your preferred presentation option completionHandler(UNNotificationPresentationOptionBadge | UNNotificationPresentationOptionAlert); } - (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void(^)(void))completionHandler { NSDictionary *userInfo = response.notification.request.content.userInfo; [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; completionHandler(); } - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler { [[FIRMessaging messaging] appDidReceiveMessage:userInfo]; completionHandler(UIBackgroundFetchResultNoData); }