将NSDateComponents传递给UILocalNotification的最佳实践?

时间:2016-06-09 02:34:56

标签: swift nsdateformatter nsdatecomponents ekeventstore ekeventkit

我想将NSDateComponents个对象传递给我的UILocalNotification对象的userInfo媒体资源。这样做最优雅的方式是什么?

我正在使用EKReminders并正在传递他们的dueDateComponents(类型为NSDateComponents。)我还传递了两个字符串,所以我&#39我想也许我会通过NSDateComponent description财产。 (我无法通过NSDateComponent本身,因为它不是有效的'属性列表类型')当我收到本地通知时,我需要制作NSDateComponents再次退出String。我使用以下代码执行此操作,但我不确定它是否始终有效(对于每个区域设置?)因为我不知道dueDateComponents是否始终具有相同的格式下面...

这真的是传递NSDateComponents的最佳/最稳定的方式吗?

let duedatestrTime = "2016-10-01 01:00:00 +0000"

// MARK: date utilities
extension String {
    func toDate() -> NSDate? {
        let dateFormatter = NSDateFormatter()
        dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss Z"  // IS THIS RELIABLE? DO I KNOW THAT EKReminders.dueDateComponents ALWAYS HAVE THIS FORMAT? IF NOT IT'LL RETURN NIL... 
        return dateFormatter.dateFromString(self)
    }
}

extension NSDate {
    func toNSDateComponents() -> NSDateComponents {
        let unitFlags: NSCalendarUnit = [.Day, .Month, .Year, .Hour, .Minute]
        return NSCalendar.currentCalendar().components(unitFlags, fromDate: self)
    }
}

let x = strTime.toDate().toNSDateComponents()

1 个答案:

答案 0 :(得分:1)

NSDate是要使用的有效类型。为什么不直接将组件转换为NSDate以将其传入,然后在出路时将其转换回组件(如果这就是您需要的那样)?