I need to make a local notification that alert the user daily at 19:30.
Here is what i did:
var dateComponents = DateComponents()
dateComponents.hour = 19
dateComponents.minute = 30
let trigger = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: true)
let identifier = "daily.alarm"
let request = UNNotificationRequest(identifier: identifier, content: content, trigger: trigger)
UNUserNotificationCenter.current().removeAllPendingNotificationRequests()
UNUserNotificationCenter.current().add(request, withCompletionHandler: { (error) in
if error != nil {
debugPrint("center.add(request, withCompletionHandler: { (error)")
}
})
However, I found that the notification is not alert at 19:30. Instead, it alert 15 mins earlier. Also, it cannot alarm daily as well. What i have done wrong?
Use below function to schedule your notification: