iOS使用node-apn通知标题

时间:2018-06-14 19:43:23

标签: ios push-notification apple-push-notifications node-apn

有没有办法使用node-apn设置加粗通知标题(就像大多数应用程序一样)?我试过以下的二传手:

notification.body = "Body";
notification.title = "Title";
notification.alert = "Alert";

但通知中只包含提醒,而且它是常规文字,显得很奇怪。

1 个答案:

答案 0 :(得分:4)

您可以像这样设置警告对象中的标题

alert: {
    title: 'heres the title',
    body: 'heres a body'
}