我不久前问了一个关于时区的问题,我正在使用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);
答案 0 :(得分:6)
他们可能会根据一年中的时间打印不同的东西(因为时间确定夏令时是否有效)。
请勿使用EST
或 EDT
。使用US/Eastern
或America/New_York
:
NSTimeZone *tz = [NSTimeZone timeZoneWithName:@"US/Eastern"];
// or
NSTimeZone *tz = [NSTimeZone timeZoneWithName:@"America/New_York"];
这些时区会在一年中的正确时间调整夏令时。