2

服务器返回给我正确的日期和时间。纽约时区。

2013-09-10 05:37:07 +0000(发表评论的正确时间)

这是我在应用程序中对其进行格式化的方式:

[format setDateFormat:@"dd MMM, yyyy HH:mm"];

[format setTimeZone:[NSTimeZone timeZoneWithName:@"America/New_York"]];

结果我有

10 sept, 2013 01:37

怎么了?

UPD

编码

    NSDateFormatter *format = [[NSDateFormatter alloc] init];
    [format setTimeZone:[NSTimeZone timeZoneWithName:@"America/New_York"]];
    [format setDateFormat:@"dd MMM, yyyy HH:mm"];

    NSString *stringDate = [format stringFromDate:Date]; //Date is "2013-09-10 05:37:07 +0000"
    //stringDate is "10 sept, 2013 01:37"
4

2 回答 2

3

我当前的时间(当时)是:下午 3:00

纽约的时间(当时)是:上午 8:00

解决方案:

NSDate *date = activityDate; // Server sends me the date: 2013-09-10 09:00:00 +0000
NSString *dateFormat = @"dd MMM, yyyy HH:mm";
//Then the transformation comes here
NSDateFormatter* newYorkDf = [[NSDateFormatter alloc] init];
[newYorkDf setTimeZone:[NSTimeZone timeZoneWithName:@"America/New_York"]];
[newYorkDf setDateFormat:dateFormat];

NSDateFormatter* gmtDf = [[NSDateFormatter alloc] init];
[gmtDf setTimeZone:[NSTimeZone timeZoneWithName:@"GMT"]];
[gmtDf setDateFormat:dateFormat];
NSDate *gmtDate = [gmtDf dateFromString:[newYorkDf stringFromDate:date]];

NSDateFormatter *format = [[NSDateFormatter alloc] init];
[format setDateFormat:dateFormat];
NSString *stringDate1 = [format stringFromDate:gmtDate];
self.labelDate.text = stringDate1;   // Returns me: 10 Sept, 2013 8:00
于 2013-09-10T12:01:11.740 回答
1

您说“服务器返回”。你能告诉我们更多关于你是如何得到你的原始日期的吗?您可能正在构建一个 UTC 日期,然后将其格式化为 NY(东部时区)日期。复活节 TZ 是 UTC-5。我猜你从 5:37 - 5h 开始实行夏令时会给出 0:37。

如果您发布如何使用显示的代码构建原始日期,我可能会更具体。

于 2013-09-10T10:51:48.873 回答