iOS:我应该使用什么EST或EDT,为什么



不久前我问了一个关于时区的问题,我正在使用EST。 用户建议我使用EDT。我想知道为什么我应该使用其中一个,因为它们都为我打印相同的时间。这是更好地说明我的意思的代码。

NSDate *today = [NSDate date];
NSDateFormatter *edtDf = [[NSDateFormatter alloc] init];
[edtDf setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"EDT"]];
[edtDf setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *stringDate = [edtDf stringFromDate:today];
NSLog(@"The EDT is %@", stringDate);
NSDate *today1 = [NSDate date];
NSDateFormatter *estDf = [[NSDateFormatter alloc] init];
[estDf setTimeZone:[NSTimeZone timeZoneWithAbbreviation:@"EST"]];
[estDf setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
NSString *stringDate1 = [estDf stringFromDate:today1];
NSLog(@"The EST is %@", stringDate1);

它们可能会根据一年中的时间打印不同的内容(因为一年中的时间决定了夏令时是否处于活动状态)。

不要使用 EST EDT .使用US/EasternAmerica/New_York

NSTimeZone *tz = [NSTimeZone timeZoneWithName:@"US/Eastern"];
// or
NSTimeZone *tz = [NSTimeZone timeZoneWithName:@"America/New_York"];

这些时区在一年中的正确时间根据夏令时进行调整。

相关内容

  • 没有找到相关文章