0

我在 json 字符串中获取纪元时间,时间为:

1374493503000

我正在使用以下代码来转换时间:

//convert time since epoch to date
                NSString* strTime = [dictThisEarthquakeProperties objectForKey:@"time"];
                NSTimeInterval seconds = [strTime doubleValue];
                NSDate* epochNSDate = [[NSDate alloc] initWithTimeIntervalSince1970:seconds];
                NSDateFormatter* dateFormatter = [[NSDateFormatter alloc] init];
                [dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss zzz"];
                NSLog (@"Epoch time %@ equates to %@", strTime, [dateFormatter stringFromDate:epochNSDate]);

我的结果是这样的:

Epoch time 1374493503000 equates to UTC 45525-12-19 14:50:00 +0000

任何帮助/解释将不胜感激。

4

1 回答 1

2

Doh,没关系,我从 json 获得毫秒数,而不是秒数。

于 2013-07-22T12:09:24.807 回答