我知道如何制作在特定时间触发每一天的本地通知。但是如何为每个通知更改UNMutableNotificationContent.Body?
现在它只是一遍又一遍地显示相同的文字。
我正在为iOS 10编码。
答案 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()