Created
November 19, 2015 16:45
-
-
Save odrobnik/dc8335e936e04b0b1c89 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
modified = @"Fri, 02 Oct 2015 16:20:34 CEST"; | |
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; | |
[dateFormatter setDateFormat:@"EEE, dd MMM yyyy HH:mm:ss zzz"]; | |
NSLocale *locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"]; | |
[dateFormatter setLocale:locale]; | |
_lastModifiedDate = [dateFormatter dateFromString:modified]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment