Set repeat notification trigger using DateComponents

194 views Asked by At

Currently working on an App need set different type of repeat rule of notification

Like repeat everyday, workday, weekday or several days of the week.

var dateInfo = DateComponents()
dateInfo.hour = 7
dateInfo.minute = 0
dateInfo.weekday = 1
let trigger = UNCalendarNotificationTrigger(dateMatching: dateInfo, repeats: true)

Using this API can only add one day of the week at each time, is there any simple way.

appreciated

0

There are 0 answers