Last active
August 29, 2015 14:12
-
-
Save k0nserv/f53084ebb6a753c4905f to your computer and use it in GitHub Desktop.
2014 and 2015
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
#import <Foundation/Foundation.h> | |
int main (int argc, const char * argv[]) | |
{ | |
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; | |
dateFormatter.dateFormat = @"YYYY"; | |
NSDate *date = [NSDate dateWithTimeIntervalSince1970:1419872056]; | |
NSLog (@"%@", [dateFormatter stringFromDate:date]); // 2015 | |
dateFormatter.dateFormat = @"yyyy"; | |
NSLog(@"%@", [dateFormatter stringFromDate:date]); // 2014 | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment