OStack程序员社区-中国程序员成长平台

标题: iphone - iOS - 解析不同格式的日期 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 18:43
标题: iphone - iOS - 解析不同格式的日期

我是 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-推荐答案


  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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4