Swift - 时区关闭一小时/秒.FromGMT不正确

时间:2017-03-13 10:16:21

标签: ios swift calendar timezone

这应该是一个非常简单的问题,但我似乎无法绕过它。

鉴于我的时区是EDT(GMT-4),为什么GMT 04:00变成23:00而不是00:00?

// The offset is -4 hours
let offsetFromGMT = Calendar.current.timeZone.secondsFromGMT() / 60 / 60

// 2017-03-12 04:00
var destinationComponents = DateComponents()
destinationComponents.timeZone = TimeZone(secondsFromGMT: 0)
destinationComponents.year = 2017
destinationComponents.month = 03
destinationComponents.day = 12
destinationComponents.hour = -offsetFromGMT // 4 hours

// Why is this 2017-03-11 23:00 and not 2017-03-12 00:00?
let date = Calendar.current.date(from: destinationComponents)!
// Outputs 23
Calendar.current.dateComponents([.hour], from: date).hour

1 个答案:

答案 0 :(得分:4)

Calendar.current.timeZone.secondsFromGMT()

是您所在时区的当前 GMT偏移量。在你的情况下 是4个小时,因为纽约目前的时区是EDT = GMT-4, 夏令时活跃。

所以你的destinationComponentsdate是四点钟 格林威治早上的时间:

2017-03-12 04:00:00 +0000

那时,纽约的时区是EST = GMT-5,而且 夏令时不活跃。因此,该日期为您当地时区的2017-03-11 23:00

我会采用不同的方式,避免使用“secondsFromGMT”。

示例:“2017-03-12 00:00:00”纽约时间是“2017-03-12 05:00:00”GMT。

var srcComponents = DateComponents()
srcComponents.timeZone = TimeZone(identifier: "America/New_York")!
srcComponents.year = 2017
srcComponents.month = 3
srcComponents.day = 12
srcComponents.hour = 0
srcComponents.minute = 0

let date = Calendar.current.date(from: srcComponents)!
print(date) // 2017-03-12 05:00:00 +0000