- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一组 UNNotificationRequest
。我想按 nextTriggerDate
对它们进行排序。
据我所知,我会使用 array.sorted(by:predicate)
让 sortedNotifications = notificationRequests.sorted(by:
{ $0.trigger.nextTriggerDate?.compare($1.trigger.nextTriggerDate!) == .orderedAscending })
但是,问题是 .trigger
没有 nextTriggerDate
属性。
为了获得nextTriggerDate
,我必须提取触发器并将其转换为UNCalendarNotificationTrigger
。据我所知,这不能在谓词中完成。
有什么想法吗?
最佳答案
您可以使用 UNNotificationRequest 和 nextTriggerDate (UNNotificationRequest,nextTriggerDate)
元组
// get request with date Tuple --> example : (value0,value1)
let requestWithDateTuple = notificationRequests.map({ (req) -> (UNNotificationRequest,Date?)? in
guard let trigger = req.trigger as? UNCalendarNotificationTrigger else {
return nil
}
return (req,trigger.nextTriggerDate())
}).compactMap({$0})
// you will get Tuple (request,Date) ,sort them by date
let sortedTuple = requestWithDateTuple.sorted(by: { $0.1?.compare($1.1!) == .orderedAscending })
// sorted request only
let requestSorted = sortedTuple.map({$0.0})
关于ios - 如何按 nextTriggerDate 对 UNNotificationRequests 数组进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50278950/
当我运行以下命令时(2017 年 1 月 7 日): let dateComponents = Calendar.current.dateComponents(in: TimeZone
我正在更新我的 localnotifications 以使用 iOS 10,但我遇到了一个问题,我认为 nextTrigger 函数返回的不是“满足触发条件的下一个日期。”而是返回当前日期时间加上您最
我有一组 UNNotificationRequest。我想按 nextTriggerDate 对它们进行排序。 据我所知,我会使用 array.sorted(by:predicate) 对数组进行排序
在我的应用程序中,我允许用户安排重复的本地通知。我遇到的问题(许多其他基于环顾四周的问题)是 nextTriggerDate() 始终将其返回值基于当前时间而不是安排通知的时间。我看到了在通知的 us
我是一名优秀的程序员,十分优秀!