我有一个 UTC 字符串,我想将其转换为 NSDate。不知何故,我得到了 30 分钟的错误
字符串是 2012-04-10T00:00:00+05:30
转换后的日期为 2012-04-09 19:00:00 +0000
应该在哪里 2012-04-09 18:30:00 +0000
我使用此函数将字符串转换为日期
- (NSDate *)parseRFC3339Date{
NSDateFormatter *rfc3339TimestampFormatterWithTimeZone = [[NSDateFormatter alloc] init];
[rfc3339TimestampFormatterWithTimeZone setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZ"];
NSDate *theDate = nil;
NSError *error = nil;
if (![rfc3339TimestampFormatterWithTimeZone getObjectValue:&theDate forString:self range:nil error:&error]) {
NSLog(@"Date '%@' could not be parsed: %@", self, error);
}
[rfc3339TimestampFormatterWithTimeZone release];
return theDate;
}