- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我允许用户安排重复的本地通知。我遇到的问题(许多其他基于环顾四周的问题)是 nextTriggerDate() 始终将其返回值基于当前时间而不是安排通知的时间。我看到了在通知的 userInfo 中存储“日期”值的建议,但看到通知是如何重复的,它似乎无法在每次通知触发时保持此日期值准确。有什么方法可以获取重复本地通知的实际触发日期?
func getNotifications(completion: @escaping (Bool)->()){
notificationArray.removeAll()
center.getPendingNotificationRequests { (notifications) in
print("Count: \(notifications.count)")
if notifications.count <= 0{
completion(true)
return
}
for item in notifications {
var nextTrigger = Date()
if let trigger = item.trigger as? UNTimeIntervalNotificationTrigger{
nextTrigger = trigger.nextTriggerDate()!
}else if let trigger = item.trigger as? UNCalendarNotificationTrigger{
nextTrigger = trigger.nextTriggerDate()!
}
}
}
completion(true)
}
最佳答案
确认。我运行了这段代码:
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 120, repeats: true)
print("scheduling at", Date())
DispatchQueue.main.asyncAfter(deadline: .now()+15) {
print("checking at", Date())
UNUserNotificationCenter.current().getPendingNotificationRequests {
arr in let arr = arr
if let req = arr[0].trigger as? UNTimeIntervalNotificationTrigger {
let fd = req.nextTriggerDate()
print("trigger date", fd as Any)
}
}
}
// ... proceed to configure and schedule the notification
我还配置了我的用户通知中心代表在前台接收通知并打印时间。
这是我在控制台中看到的:
scheduling at 2018-08-01 03:40:36 +0000
checking at 2018-08-01 03:40:51 +0000
trigger date Optional(2018-08-01 03:42:51 +0000)
received notification while active 2018-08-01 03:42:36 +0000
所以触发日期被报告为从我检查时开始的 2 分钟,但通知实际上是从我安排它时开始的 2 分钟。
我会把它描述为一个错误!
我对你原来的问题的一个不同意见是,对于一个非重复的 UNTimeIntervalNotificationTrigger,我得到了完全相同的结果:
scheduling at 2018-08-01 03:45:50 +0000
checking at 2018-08-01 03:46:06 +0000
trigger date Optional(2018-08-01 03:48:06 +0000)
received notification while active 2018-08-01 03:47:50 +0000
UNTimeIntervalNotificationTrigger 也有一个 timeInterval
属性,但即使这样对我们也没有好处,除非我们知道最初安排通知的时间——而 UNNotificationRequest 无法提供找到它的方法。
(为了确定,我推迟了检查,直到重复通知触发了几次,但结果是一样的:nextTriggerDate
显然添加了 timeInterval
现在而不是报告下一次触发通知的时间。)
关于ios - nextTriggerDate() 不返回 'expected' 值,是否有另一种方法来获取重复本地通知的下一个触发日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51618620/
当我运行以下命令时(2017 年 1 月 7 日): let dateComponents = Calendar.current.dateComponents(in: TimeZone
我正在更新我的 localnotifications 以使用 iOS 10,但我遇到了一个问题,我认为 nextTrigger 函数返回的不是“满足触发条件的下一个日期。”而是返回当前日期时间加上您最
我有一组 UNNotificationRequest。我想按 nextTriggerDate 对它们进行排序。 据我所知,我会使用 array.sorted(by:predicate) 对数组进行排序
在我的应用程序中,我允许用户安排重复的本地通知。我遇到的问题(许多其他基于环顾四周的问题)是 nextTriggerDate() 始终将其返回值基于当前时间而不是安排通知的时间。我看到了在通知的 us
我是一名优秀的程序员,十分优秀!