How to format convert the string 2013-01-27T02:31:47+08:00 into NSDate

拈花ヽ惹草 提交于 2019-11-29 17:02:18

Your format should be @"yyyy-MM-dd'T'HH:mm:ssZZZZZ". You only need single quotes around letters that are not going to be used by the formatter.

  NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
  [dateFormat setDateFormat:@"yyyy-MM-dd HH:mm:ss"];
  [dateFormat setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];

  NSString *dateTimeString = @"2013-01-09 16:00:00";
  NSLog(@"DateTimeString = %@", dateTimeString);

  NSDate *myDate =[dateFormat dateFromString:dateTimeString];
  NSLog(@"myDate:          %@", myDate);

Output:

  dateTimeString = 2013-01-09 16:00:00
  myDate:        = 2013-01-09 16:00:00 +0000

To present a date to the user, convert NSDate to NSString, using stringFromDate, but do not set a time zone (so that the local time zone is used):

   NSDateFormatter *dateFormat2 = [[NSDateFormatter alloc] init];
   [dateFormat2 setDateFormat:@"yyyy-MM-dd HH:mm:ss"];

     NSString *localDateString = [dateFormat2 stringFromDate:myDate];
   NSLog(@"localDateString: %@", localDateString);

Output:

   localDateString: 2013-01-09 17:00:00
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!