我有一个包含我的日期的数组。我想在早上 6.30 安排那些日子的通知。
我遵循了appcoda 教程,该教程有助于根据日期选择器的输入安排通知,这很棒,但我有点不确定如何调用我的函数以仅在给定的日期安排通知。
所以我的问题是如何以及在哪里调用该函数?
- 这些天是连续的天
- 我可以给函数一个开始日期并用数组中的项目数重复它吗?
以下是我的功能:
func scheduleNotification(at date: Date) {
let calendar = Calendar(identifier: .gregorian)
let components = calendar.dateComponents(in: .current, from: date)
let newComponents = DateComponents(calendar: calendar, timeZone: .current, month: components.month, day: components.day, hour: 6, minute: 30)
let trigger = UNCalendarNotificationTrigger(dateMatching: newComponents, repeats: false)
let content = UNMutableNotificationContent()
content.title = "Advent Calendar"
content.body = "Just a reminder to open your present!"
content.sound = UNNotificationSound.default()
let request = UNNotificationRequest(identifier: "textNotification", content: content, trigger: trigger)
UNUserNotificationCenter.current().removeAllPendingNotificationRequests()
UNUserNotificationCenter.current().add(request) {(error) in
if let error = error {
print("Uh oh! We had an error: \(error)")
}
}
}