Created
February 23, 2014 11:45
-
-
Save fredkelly/9170313 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ..snip | |
// Setup date formatter | |
NSDateFormatter *dateFormatter = [NSDateFormatter new]; | |
[dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'"]; | |
dateFormatter.timeZone = [NSTimeZone timeZoneWithAbbreviation:@"UTC"]; | |
entityMapping.preferredDateFormatter = dateFormatter; | |
// snip.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment