This question already has an answer here:
- Problem with NSDateFormatter 2 answers
I am having a problem with getting NSDateFormatter to return an NSDate object. I am receiving date/time values from a JSON web service and have no control over the incoming date format, however, I suspect that is not the issue. I have the following code:
strVal = @"2013-02-27T05:00:00.000-05:00";
NSDateFormatter *df = [[NSDateFormatter alloc] init];
NSDate *gaugeDateTime = [df dateFromString: strVal];
[flowDates addObject:gaugeDateTime];
strVal is always in the format shown. When this code is called, gaugeDateTime is always nil. Can anybody offer some insight as to why this won't return a date object? Thanks!

