How do I convert an NSDate to an NSString so that only the year in @"yyyy" format is output to the string?

link|improve this question

72% accept rate
feedback

5 Answers

up vote 64 down vote accepted

How about...

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy"];

//Optionally for time zone converstions
[formatter setTimeZone:[NSTimeZone timeZoneWithName:@"..."]];

NSString *stringFromDate = [formatter stringFromDate:myNSDateInstance];

[formatter release];
link|improve this answer
Never forgetting the [formatter release] at the END! – CastroAPZ Mar 15 '10 at 10:19
10  
This will produce a memory leak, since the formatter is never released. – mana Jun 22 '10 at 8:46
3  
Don't use init with NSDateFormatter. It was removed after iOS 3.2. (And if you use a class method instead, it will autorelease and you won't have the leak problem, too.) – zekel Nov 8 '10 at 5:20
feedback

Hope to add more value by providing the normal formatter including the year, month and day with the time. You can use this formatter for more than just a year

[dateFormat setDateFormat: @"yyyy-MM-dd HH:mm:ss zzz"]; 

Hope this helps more people

Cheers Al

link|improve this answer
feedback

there are a number of NSDate helpers on the web, I tend to use:

https://github.com/billymeltdown/nsdate-helper/

Readme extract below:

  NSString *displayString = [NSDate stringForDisplayFromDate:date];

This produces the following kinds of output:

‘3:42 AM’ – if the date is after midnight today
‘Tuesday’ – if the date is within the last seven days
‘Mar 1’ – if the date is within the current calendar year
‘Mar 1, 2008’ – else ;-)
link|improve this answer
feedback

If you don't have NSDate -descriptionWithCalendarFormat:timeZone:locale: available (I don't believe iPhone/Cocoa Touch includes this) you may need to use strftime and monkey around with some C-style strings. You can get the UNIX timestamp from an NSDate using NSDate -timeIntervalSince1970.

link|improve this answer
feedback

If you are on Mac OS X you can write:

NSString* s = [[NSDate date] descriptionWithCalendarFormat:@"%Y_%m_%d_%H_%M_%S" timeZone:nil locale:nil];

However this is not available on iOS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.