I am receiving a date string in a JSON encoding like this: 2012-08-01T11:53:58+02:00. I would like to convert it into a NSDate object, however my conversion isn't working. As far as I know, it is supposed to be ISO 8601 format, but I am quite confused about the time zone at the end, because it has a colone in between.
My Code so far looks like this:
/*
* format the time
*/
NSDateFormatter *isoDateFormatter = [NSDateFormatter new];
[isoDateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ssZZZ"];
NSDate *dateTmp = [isoDateFormatter dateFromString:[data objectForKey:@"datetimeServer"]];
/*
* log the output
*/
[isoDateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss"];
NSLog(@"Server time is %@", [isoDateFormatter stringFromDate:dateTmp]);
To prevent unusable answers, the date is definitely there, I checked :) in the log. But have Server time equals to (null), so the conversion didn't work correctly.
Thank you for your answers.
Bye, Filip
+02:00to+0200). Then parse the date. See here stackoverflow.com/questions/4757797/… – Jilouc Aug 1 '12 at 10:39