vote up 3 vote down star

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

flag

46% accept rate

3 Answers

vote up 5 vote down

You could do it with:

NSString *year = [myDate descriptionWithCalendarFormat:@"%Y" timeZone:nil locale:nil];

Note that you may not want to use the default time zone and locale, in which case you should specify them instead of passing nil. See the NSDate docs for more details.

link|flag
These dates are being read from a database and contain only a 4 digit year. I'm getting an uncaught exception when I try your code. Is my format throwing it off? – 4thSpace Feb 23 at 1:51
1  
This works: NSString *startDate = [[NSString alloc] initWithFormat:(NSString *)dbStartDate]; – 4thSpace Feb 23 at 1:55
vote up 1 vote down

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|flag
vote up 3 vote down

How about...

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

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

NSString *stringFromDate = [formatter stringFromDate:myNSDateInstance];
link|flag

Your Answer

Get an OpenID
or

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