1
通知將在IE中使用25-7-2017觸發:UNCalendarNotificationTrigger(dateMatching: dueDate , repeats: false)
iOS的10:從特定日期,每月重複本地用戶通知
我怎麼能每月重複一次通知即25-8-2017,25 -9-2017等。
通知將在IE中使用25-7-2017觸發:UNCalendarNotificationTrigger(dateMatching: dueDate , repeats: false)
iOS的10:從特定日期,每月重複本地用戶通知
我怎麼能每月重複一次通知即25-8-2017,25 -9-2017等。
相反,當你初始化觸發器提供全最新的,只包含月份的一天一套DateComponents
,並設置repeats
到true
。
let components = DateComponents(day: 25)
let trigger = UNCalendarNotificationTrigger(dateMatching: components, repeats: true)
謝謝非常。 –
的可能的複製[iOS的通知觸發:每兩週和/或季度(https://stackoverflow.com/questions/41441124/ios-notification-trigger-fortnightly-and-or-quarterly) – Honey