MySQL returns this datetime: 2014-05-07T16:58:44.000Z
How, with what datetime format I can create NSDate?
I far as I found this, but it does not work:
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"yyyy'-'MM'-'dd'T'HH':'mm':'ss'Z'"];
NSDate *date = [df dateFromString: valueStr];
Your format string is close, but you want to specify the milliseconds with
SSS
, too:Also, the
Z
in your date string stands for "Zulu" (i.e. GMT/UTC), so yourdateFormat
should useZ
orX
without quotes so that it correctly parses the string's time zone. Also, if you're building strings from dates, make sure to set your time zone accordingly. You also want to set your locale, too:See Technical Q&A QA1480 for more information.
You can also use the newer
NSISO8601DateFormatter
, which gets you out of some of those weeds: