gpt4 book ai didi

ios - iOS 推送通知中的多行标题

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

我正在为同时具有 iOS 和 Android 版本的应用程序集成 FCM。

目前,对于 iOS,我想在多行中发送标题。我该怎么做呢?我正在尝试使用 Firebase 控制台进行测试。但似乎没有什么对我有用。

我试过这些

\n
<br/>
\\n
\r\n

this post 中的建议.但没有任何效果。

我基本上希望通知的前两行以粗体显示。非常感谢任何帮助。 enter image description here

最佳答案

您看到的第一行粗体是通知标题,第二行是副标题,下面是内容(常规字体)。

这些是通知的属性,因为 iOS 10 设置为 UN(Mutable)NotificationContent (之前没有字幕行)。

可以在通过 APNS 发送的有效负载中配置它们的属性:

{
"aps": {
"alert": {
"title": "Custom title",
"subtitle": "Custom subtitle",
"body": "Custom message"
}
}
}

此外,您还可以创建一个 UserNotificationServiceExtension 来更新已收到的通知的上述属性。

关于ios - iOS 推送通知中的多行标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45197742/

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