How do I convert an NSDate to an NSString so that only the year in @"yyyy" format is output to the string?
|
|
|
|
|
|
|
You could do it with:
Note that you may not want to use the default time zone and locale, in which case you should specify them instead of passing |
||||||
|
|
|
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. |
||
|
|
|
|
How about...
|
||
|
|
