MagicalRecord date parsing
I've got a date in the following format: 2013-05-04T05:07:09+00:00 I'm using MagicalRecord to map the NSDate automatically. As far as I can see the above date format should comply with MagicalRecord's default date format: yyyy-MM-dd'T'HH:mm:ss'Z' . I have tried with a custom dateFormat entry in the attribute's user info (see this article ): yyyy-MM-ddTHH:mm:ss+Z , yyyy-MM-dd T HH:mm:ss Z , yyyy-MM-dd'T'HH:mm:ss'+'Z but none of them work in order to have it parse the date properly and it always returns nil regardless of setting a custom dateFormat or using MagicalRecord's default format. Let's