我是 iOS 新手。我希望将诸如“2012-01-02T00:00:00-05:00”之类的日期解析为“YYYY-MM-dd HH:mm:ss”格式。到目前为止,我已经完成了以下操作 -
NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init];
[inputFormatter setTimeZone:[NSTimeZone timeZoneWithAbbreviation"UTC"]];
[inputFormatter setDateFormat"YYYY-MM-dd HH:mm:ss"];
NSString *xExpDate = expirationDate;
NSString *tempExpDate = [xExpDate stringByReplacingOccurrencesOfString"T" withString" "];
我不太明白这之后该怎么办。有什么想法吗?
Best Answer-推荐答案 strong>
NSString *d = @"2012-01-02T00:00:00-0500";
NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init];
[inputFormatter setTimeZone:[NSTimeZone timeZoneWithAbbreviation"UTC"]];
[inputFormatter setDateFormat"YYYY-MM-dd'T'HH:mm:ssZZZ"];
NSDate *xExpDate = [inputFormatter dateFromString:d];
NSLog(@"xExpDate: %@", xExpDate);
我认为您的日期字符串不正确,因为该区域应该没有任何“:”
关于iphone - iOS - 解析不同格式的日期,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/8715734/
|