gpt4 book ai didi

ios - 如何在远程通知的 alertBody 中显示来自 CKRecord 的数据?

转载 作者:搜寻专家 更新时间:2023-10-31 19:27:45 24 4
gpt4 key购买 nike

在我的应用程序中,我有一个公共(public) CloudKit 数据库。我将其用于远程订阅。

我在 CloudKit 仪表板中创建了一个 GlobalNotification Record,为该记录创建了类型为 Stringcontent 字段,并在我的 AppDelegate 中实现了以下方法来发出通知工作:

 func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
let subscription = CKQuerySubscription(recordType: "GlobalNotification", predicate: NSPredicate(format: "TRUEPREDICATE"), options: .firesOnRecordCreation)

let info = CKNotificationInfo()
info.alertBody = "Some Text" // here i want to show content String data of a CKRecord which fired a notification
info.shouldBadge = true
info.soundName = "default"


subscription.notificationInfo = info

CKContainer.default().publicCloudDatabase.save(subscription, completionHandler: { subscription, error in
if error == nil {
// Subscription saved successfully
} else {
// An error occurred
}
})
}

之后,我在 cloudKit 仪表板中创建了一个新的 GlobalNotification 记录,并在 CloudKit 仪表板中的该记录的 content 字段中添加了一些“CloudKit content Text”。当通知在我的设备上触发时,我在它的 alertBody 中看到“一些文本”文本,但我想看到“CloudKit 内容文本”。

我希望此通知显示从 GlobalNotification Record 的 content 字段中获取的字符串。我应该如何更改我的代码以实现此目的?

我读过 desiredKeys 并尝试添加 info.desiredKeys = ["content"] 但它没有帮助。我也搜索过,但没有找到解决方案。

最佳答案

您不能仅使用警报正文来做到这一点。

要完成这项工作,您需要设置三个组件。您需要使用包含可替换参数的消息定义一个字符串。然后你必须告诉你的通知使用那个字符串。最后,您告诉您的通知要将哪些记录字段替换为字符串。

首先,您需要将键/字符串对添加到 localizable.strings 文件中。在字符串中,您可以使用 %n$@ 指定要替换参数的位置,其中“n”对每个附加参数递增。

其次,在您的通知中,您需要将 .alertLocalizationKey 设置为您在上面的字符串文件中指定的键名。

第三,在您的通知中,将 .alertLocalizaionArgs 属性设置为您记录中的字段名称数组。

此 Apple 页面提供了如何使用可替换参数构造字符串的示例:https://developer.apple.com/documentation/cloudkit/cknotificationinfo/1515182-alertlocalizationargs

这个问题还显示了一些示例代码:(示例 1 不再有效。按照示例 2)CloudKit notifications

关于ios - 如何在远程通知的 alertBody 中显示来自 CKRecord 的数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46991967/

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