我正在编写一个涉及人们出生时间的应用程序,我正在尝试使用IOS来获得准确的GMT偏移量。我得到了明显错误的答案,我想知道其他人是否遇到过它们,或者是否有任何变通方法。
这是我用来计算偏移量(第一行)的代码,以及用于显示我所得到的日志代码。
ret.dateTime.offset = [tz secondsFromGMTForDate:date] / 3600.0;
double dstOffset = [tz daylightSavingTimeOffsetForDate:date] / 3600.0;
NSLog(@"Setting offset for %@ on %@, to %3.1f", ret.location.description, ret.dateTime.briefDateDescription, ret.dateTime.offset);
NSLog (@" (TZ Name = %@, date = %@, dstOffset = %3.1f)", tz.name, date, dstOffset);
以下是结果 - 对于东部时间的普利茅斯和纽约是正确的,并且DST偏移对所有这些都是正确的,但对于明尼阿波利斯(在中部时间),secondsFromGMTForDate关闭一小时,并且关闭亚特兰大(东部时间)在另一个方向上一个小时。
Setting offset for Minneapolis, MN on 3/26/70, to -5.0
(TZ Name = America/Menominee, date = 1970-03-26 14:29:00 +0000, dstOffset = 0.0)
Setting offset for Plymouth, MA on 1/13/80, to -5.0
(TZ Name = America/New_York, date = 1980-01-14 02:52:00 +0000, dstOffset = 0.0)
Setting offset for Atlanta, GA on 10/10/48, to -6.0
(TZ Name = America/Kentucky/Monticello, date = 1948-10-10 13:07:00 +0000, dstOffset = 0.0)
Setting offset for New York, NY on 6/11/80, to -4.0
(TZ Name = America/New_York, date = 1980-06-11 12:25:00 +0000, dstOffset = 1.0)
任何线索?其他人在2008年3月26日尝试明尼阿波利斯时会得到什么? America / Menominee绝对是中心时间,DST Offset为0时,secondsFromGMTForDate绝对应该是-6小时,而不是-5。
答案 0 :(得分:4)
这些都是正确的。与大多数操作系统一样,Apple的时区系统基于IANA time zone data。该数据包括历史信息和当前信息,因此即使时区规则可以更改,旧日期也会正确转换。
对于America/Menominee
,数据包含以下注释:
# Dickinson, Gogebic, Iron, and Menominee Counties, Michigan,
# switched from EST to CST/CDT in 1973.
您的考试日期是1970年,当时区域不同。
对于America/Kentucky/Monticello
,评论包括:
# After prolonged debate, and despite continuing deep differences of opinion,
# Wayne County (central Kentucky) is switching from Central (-0600) to Eastern
# (-0500) time. They won't "fall back" this year. See Sara Shipley,
# The difference an hour makes, Nando Times (2000-08-29 15:33 -0400).
这个区域的测试日期是在1948年,看起来该位置在中央时间。