gpt4 book ai didi

ios - Firebase 通知未在 iOS 应用程序中显示警报或横幅和角标(Badge)应用程序图标

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:12:53 27 4
gpt4 key购买 nike

  • 我设计了一款支持推送通知的 iOS 应用。通过 FCM 抛出的通知(仅用于检查),它只会在前台模式下在控制台中打印。但是当应用程序处于后台模式时,它不会显示任何通知。
  • 我已注册 Apple Developer Program 帐户。
  • 在这个帐户中,我创建了一个带有推送通知启用和证书(用于生产)的应用程序 ID。
  • 创建了 .p12 和 .pem 文件。
  • 还创建了配置文件 (AdHoc)
  • 为 iOS 10+ 的 xcode 8 中的通知实现了 Firebase 中给出的代码。
  • 正确生成的设备 token 。仍然无法收到通知。请帮助..

应用委托(delegate)代码:

import UIKit 
import UserNotifications
import Firebase
import FirebaseInstanceID
import FirebaseMessaging

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?


let gcmMessageIDKey = "gcm.message_id"

func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {

// Register for remote notifications. This shows a permission dialog on first run, to
// show the dialog at a more appropriate time move this registration accordingly.
// [START register_for_notifications]
if #available(iOS 10.0, *) {
// For iOS 10 display notification (sent via APNS)
UNUserNotificationCenter.current().delegate = self

let authOptions: UNAuthorizationOptions = [.alert, .badge, .sound]
UNUserNotificationCenter.current().requestAuthorization(
options: authOptions,
completionHandler: {_, _ in })

// For iOS 10 data message (sent via FCM)
FIRMessaging.messaging().remoteMessageDelegate = self

} else {
let settings: UIUserNotificationSettings =
UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
application.registerUserNotificationSettings(settings)
}

application.registerForRemoteNotifications()

// [END register_for_notifications]
FIRApp.configure()

// [START add_token_refresh_observer]
// Add observer for InstanceID token refresh callback.
NotificationCenter.default.addObserver(self,
selector: #selector(self.tokenRefreshNotification),
name: .firInstanceIDTokenRefresh,
object: nil)
// [END add_token_refresh_observer]
return true
}

/* [START receive_message]*/
func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any]) {
// 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
// Print message ID.
if let messageID = userInfo[gcmMessageIDKey] {
print("Message ID: \(messageID)")
}

// Print full message.
print(userInfo)
}

/*[END receive_message]
[START refresh_token] */
func tokenRefreshNotification(_ notification: Notification) {
if let refreshedToken = FIRInstanceID.instanceID().token() {
print("InstanceID token: \(refreshedToken)")
}

// Connect to FCM since connection may have failed when attempted before having a token.
connectToFcm()
}

/* [END refresh_token]
/ [START connect_to_fcm]*/
func connectToFcm() {
// Won't connect since there is no token
guard FIRInstanceID.instanceID().token() != nil else {
return;
}

// Disconnect previous FCM connection if it exists.
FIRMessaging.messaging().disconnect()

FIRMessaging.messaging().connect { (error) in
if error != nil {
print("Unable to connect with FCM. \(error)")
} else {
print("Connected to FCM.")
}
}
}

/* This function is added here only for debugging purposes, and can be removed if swizzling is enabled.
If swizzling is disabled then this function must be implemented so that the APNs token can be paired to
the InstanceID token.*/
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
print("APNs token retrieved: \(deviceToken)")

// With swizzling disabled you must set the APNs token here.
// FIRInstanceID.instanceID().setAPNSToken(deviceToken, type: FIRInstanceIDAPNSTokenType.sandbox)

if let refreshedToken = FIRInstanceID.instanceID().token() {
print("InstanceID token 1: \(refreshedToken)")
}
}


func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable: Any],
fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
// 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
// Print message ID.
if let messageID = userInfo[gcmMessageIDKey] {
print("Message ID in didReceiveRemoteNotification: \(messageID)")
}

// Print full message.
print("didReceiveRemoteNotification: \(userInfo)")

completionHandler(UIBackgroundFetchResult.newData)
}

// [END connect_to_fcm]
func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
print("Unable to register for remote notifications: \(error.localizedDescription)")
}



/* [START connect_on_active]*/
func applicationDidBecomeActive(_ application: UIApplication) {
connectToFcm()
}


/*[END connect_on_active]
[START disconnect_from_fcm]*/
func applicationDidEnterBackground(_ application: UIApplication) {
//FIRMessaging.messaging().disconnect()
// print("Disconnected from FCM.")

connectToFcm()
print("connected to FCM in Background.")
}
// [END disconnect_from_fcm]
}

extension AppDelegate : UNUserNotificationCenterDelegate {

// Receive displayed notifications for iOS 10 devices.
func userNotificationCenter(_ center: UNUserNotificationCenter,
willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
let userInfo = notification.request.content.userInfo
// Print message ID.
if let messageID = userInfo[gcmMessageIDKey] {
print("Message ID in UNUserNotificationCenterDelegate: \(messageID)")
}

// Print full message.
print(userInfo)

// Change this to your preferred presentation option
completionHandler([])
}

func userNotificationCenter(_ center: UNUserNotificationCenter,
didReceive response: UNNotificationResponse,
withCompletionHandler completionHandler: @escaping () -> Void) {
let userInfo = response.notification.request.content.userInfo
// Print message ID.
if let messageID = userInfo[gcmMessageIDKey] {
print("Message ID in userNotificationCenter: \(messageID)")
}

// Print full message.
print(userInfo)

completionHandler()
}
}

extension AppDelegate : FIRMessagingDelegate {

// Receive data message on iOS 10 devices while app is in the foreground.
func applicationReceivedRemoteMessage(_ remoteMessage: FIRMessagingRemoteMessage) {
print("applicationReceivedRemoteMessage: \(remoteMessage.appData)")
}

}

最佳答案

要在后台模式下接收和显示通知,只需确保您在“功能”部分启用了“推送通知”。

要在前台模式下显示通知,请在 willPresent 方法的完成 block 中添加警报、角标(Badge)和声音参数。

completionHandler([.alert, .badge, .sound])

 // Receive displayed notifications for iOS 10 devices.
func userNotificationCenter(_ center: UNUserNotificationCenter,
willPresent notification: UNNotification,
withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) {
let userInfo = notification.request.content.userInfo
// Print message ID.
if let messageID = userInfo[gcmMessageIDKey] {
print("Message ID in UNUserNotificationCenterDelegate: \(messageID)")
}

// Print full message.
print(userInfo)

// Change this to your preferred presentation option
completionHandler([.alert, .badge, .sound])
}

关于ios - Firebase 通知未在 iOS 应用程序中显示警报或横幅和角标(Badge)应用程序图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42924888/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com