swift 3本地通知:如何更改每个通知的显示文本

时间:2016-10-24 20:35:53

标签: notifications local

我知道如何制作在特定时间触发每一天的本地通知。但是如何为每个通知更改UNMutableNotificationContent.Body?

现在它只是一遍又一遍地显示相同的文字。

我正在为iOS 10编码。

1 个答案:

答案 0 :(得分:0)

你试过这个吗?

let content = UNMutableNotificationContent()
content.title = self.notificationTitle // You could set this variable to anything you like
content.body = self.notificationBody // You could set this variable to anything you like
content.sound = UNNotificationSound.default()