Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Forked from k0nserv/2015.m
Last active August 29, 2015 14:22
Show Gist options
  • Save onmyway133/386b156f5b06fee7c6cd to your computer and use it in GitHub Desktop.
Save onmyway133/386b156f5b06fee7c6cd to your computer and use it in GitHub Desktop.
#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