How do I convert an NSDate to an NSString so that only the year in @"yyyy" format is output to the string?
|
feedback
|
|
How about...
| |||||||||||
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
Hope this helps more people Cheers Al | |||
|
feedback
|
|
there are a number of NSDate helpers on the web, I tend to use: https://github.com/billymeltdown/nsdate-helper/ Readme extract below:
This produces the following kinds of output:
| |||
|
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. | |||
|
feedback
|
|
If you are on Mac OS X you can write:
However this is not available on iOS. | |||
|
feedback
|