我正在尝试在用户首次打开应用程序时安排一系列通知,因此我有以下代码,但问题是它们安排在18:30而不是19:30。奇怪的是,如果我只安排一个没有while循环的通知,那么数组的索引0将作为19:30运行,但其他运行不会。我有什么想法我做错了吗?
此外,如果这是一个非常愚蠢的方式,请告诉我。我确实需要特定的日子(从当天起1,3,5,7,1 ......天)。谢谢。
let triggerDates = [
// Notifications for the first week
Calendar.current.date(byAdding: .day, value: 1, to: Date())!,
Calendar.current.date(byAdding: .day, value: 3, to: Date())!,
Calendar.current.date(byAdding: .day, value: 5, to: Date())!,
Calendar.current.date(byAdding: .day, value: 7, to: Date())!,
// Notifications for the month
Calendar.current.date(byAdding: .day, value: 14, to: Date())!,
Calendar.current.date(byAdding: .day, value: 21, to: Date())!,
// Notifications afterward
Calendar.current.date(byAdding: .day, value: 42, to: Date())!,
Calendar.current.date(byAdding: .day, value: 84, to: Date())!]
var notificationToSchedule = 7
while notificationToSchedule >= 0 {
var dateComponents = Calendar.current.dateComponents([.year, .month, .day, .hour, .minute], from: triggerDates[notificationToSchedule])
dateComponents.hour = 19
dateComponents.minute = 30
let trigger = UNCalendarNotificationTrigger(dateMatching: dateComponents, repeats: false)
let request = UNNotificationRequest(identifier: "notification\(notificationToSchedule)", content: content, trigger: trigger)
center.add(request)
print(trigger.nextTriggerDate() ?? "nil")
notificationToSchedule -= 1
}
这是控制台使用此代码输出的内容:
2019-06-21 18:30:00 +0000
2019-05-10 18:30:00 +0000
2019-04-19 18:30:00 +0000
2019-04-12 18:30:00 +0000
2019-04-05 18:30:00 +0000
2019-04-03 18:30:00 +0000
2019-04-01 18:30:00 +0000
2019-03-30 19:30:00 +0000
这与夏令时有关,因为它正在改变31/03/2019。此外,如果你设置一个断点并检查triggerDates数组的内容,你将看到日期实际上是什么样的,只是打印到控制台导致你的问题。
如果您在30/03/2019的BST中添加1天,实际上由于夏令时,您只能在UTC中添加23小时。但是如果你把它转换回来就可以了。