gpt4 book ai didi

firebase-cloud-messaging - ‘messaging(_:didReceiveRegistrationToken:)’ 的参数与协议(protocol) ‘MessagingDelegate’ 要求的可选性不同

转载 作者:行者123 更新时间:2023-12-05 09:07:43 28 4
gpt4 key购买 nike

当我尝试在 XCode 中编译我的应用程序时,我遇到了这种情况,在 android 中它运行完美,但在那里,它失败了,这是我直接从 Firebase 云使用的功能。

func messaging(_ messaging: Messaging, didReceiveRegistrationToken 
fcmToken: String) {
print("Firebase registration token: \(fcmToken)")

let dataDict:[String: String] = ["token": fcmToken]
NotificationCenter.default.post(name: Notification.Name("FCMToken"),
object: nil, userInfo: dataDict)
// TODO: If necessary send token to application server.
// Note: This callback is fired at each app startup and whenever a
new
token is generated.
}

这就是我问题标题中提到的错误标记我的地方,如果有人发生在他身上并且他可以帮助我,因为我在这里没有看到类似的错误。

最佳答案

除了@Rashid 的回答之外,您还需要在消息功能中更新 dataDict。

只需添加 ?? ""

func messaging(_ messaging: Messaging, didReceiveRegistrationToken fcmToken: String?) {
print("Firebase registration token: \(String(describing: fcmToken))")

let dataDict:[String: String] = ["token": fcmToken ?? ""]
NotificationCenter.default.post(name: Notification.Name("FCMToken"), object: nil, userInfo: dataDict)
// TODO: If necessary send token to application server.
// Note: This callback is fired at each app startup and whenever a new token is generated.
}

这直接来自文档:https://firebase.google.com/docs/cloud-messaging/ios/client

关于firebase-cloud-messaging - ‘messaging(_:didReceiveRegistrationToken:)’ 的参数与协议(protocol) ‘MessagingDelegate’ 要求的可选性不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64594274/

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