有没有办法使用node-apn设置加粗通知标题(就像大多数应用程序一样)?我试过以下的二传手:
notification.body = "Body";
notification.title = "Title";
notification.alert = "Alert";
但通知中只包含提醒,而且它是常规文字,显得很奇怪。
答案 0 :(得分:4)
您可以像这样设置警告对象中的标题
alert: {
title: 'heres the title',
body: 'heres a body'
}