用给定数字制作日期

时间:2017-01-08 14:32:52

标签: swift3 nsdate nscalendar nsdatecomponents

我有以下Swift(Swift 3)函数来创建日期组件(Date)的日期(DateComponents)。

func makeDate(year: Int, month: Int, day: Int, hr: Int, min: Int, sec: Int) -> NSDate {
    let calendar = NSCalendar(calendarIdentifier: .gregorian)!
    let components = NSDateComponents()
    components.year = year
    components.month = month
    components.day = day
    components.hour = hr
    components.minute = min
    components.second = sec
    let date = calendar.date(from: components as DateComponents)
    return date! as NSDate
}

如果我使用它,它将返回GMT日期。

override func viewDidLoad() {
    super.viewDidLoad()
    let d = makeDate(year: 2017, month: 1, day: 8, hr: 22, min: 16, sec: 50)
    print(d) // 2017-01-08 13:16:50 +0000
}

我真正希望返回的是一个基于这些数字的日期(2017-01-08 22:16:50)。我怎么能用DateComponents做到这一点?感谢。

2 个答案:

答案 0 :(得分:11)

该功能确实返回正确的日期。它是print函数,以UTC格式显示日期。

顺便说一下,你的函数的原生 Swift 3版本是

func makeDate(year: Int, month: Int, day: Int, hr: Int, min: Int, sec: Int) -> Date {
    var calendar = Calendar(identifier: .gregorian)
    // calendar.timeZone = TimeZone(secondsFromGMT: 0)!
    let components = DateComponents(year: year, month: month, day: day, hour: hr, minute: min, second: sec)
    return calendar.date(from: components)!
}

但是如果你真的想拥有UTC日期,请取消注释该行以设置时区。

答案 1 :(得分:0)

NSDate对时区一无所知。它代表一个独立于任何日历或时区的时间点。只有当你像在这里一样将它打印出来时,才会转换为GMT。这没关系 - 这只是用于调试。对于实际输出,请使用NSDateFormatter将日期转换为字符串。

作为一个hacky解决方案,您当然可以将日历配置为在从组件创建日期对象时使用GMT。这样你就会得到你期望的字符串。当然,那个日期的任何其他计算都可能会出错。