2017-07-19 81 views
1

通知將在IE中使用25-7-2017觸發:UNCalendarNotificationTrigger(dateMatching: dueDate , repeats: false)iOS的10:從特定日期,每月重複本地用戶通知

我怎麼能每月重複一次通知即25-8-2017,25 -9-2017等。

+1

的可能的複製[iOS的通知觸發:每兩週和/或季度(https://stackoverflow.com/questions/41441124/ios-notification-trigger-fortnightly-and-or-quarterly) – Honey

回答

2

相反,當你初始化觸發器提供全最新的,只包含月份的一天一套DateComponents,並設置repeatstrue

let components = DateComponents(day: 25) 
let trigger = UNCalendarNotificationTrigger(dateMatching: components, repeats: true) 
+0

謝謝非常。 –