每个月重复通知

时间:2017-10-08 07:31:49

标签: swift3 nsdatecomponents localnotification usernotifications

以下代码行可以在每周重复本地通知,对吧?:

json_decode()

但是如何在每个月重复本地通知?安排月度通知需要哪些日期组件?

1 个答案:

答案 0 :(得分:1)

您可以这样使用:

let triggerMonthly = Calendar.current.dateComponents([.day], from: date)
let trigger = UNCalendarNotificationTrigger(dateMatching: triggerMonthly, repeats: true)