服务器向我返回正确的日期和时间。纽约时区。
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"
我当前时间(当时)是: 下午 3:00
纽约的时间(此时)是: 8:00 AM
溶液:
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
你说"服务器返回"。你能告诉我们更多关于你是如何获得原始日期的吗?您可能正在构建一个 UTC 日期,然后将其格式化为纽约(东部时区)日期。复活节 TZ 是 UTC-5。我猜你从 5:37 开始夏令时生效 - 5h 会给出 0:37。
如果您发布如何构建原始日期,请使用显示的代码进行格式化,我可能会更具体。