【发布时间】:2020-11-14 08:41:17
【问题描述】:
我想用 react native firebase messages 处理 react native FCM。 对于 IOS,我将所需的代码添加到我的 AppDelegate.m 我添加了 willPresentNotification 函数来处理应用程序在前台时的推送:
//Called when a notification is delivered to a foreground app.
-(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler
{
completionHandler(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge);
}
目前我没有在前台收到推送,我想在本地处理这个问题。 请问有什么建议吗?
【问题讨论】:
标签: ios react-native firebase-cloud-messaging