home *** CD-ROM | disk | FTP | other *** search
- /* %a abbreviated weekday name
- %A full weekday name
- %b abbreviated month name
- %B full month name
- %c time and date using
- %d day of the month as a decimal number (01-31)
- %m month as a decimal number (01-12)
- %x date using the NSDateFormatString representation for the locale
- %y year without century (00-99)
- %Y year with century (e.g. 1990)
- %e day of the month as a decimal (1-31) (same as %d, but no leading 0)
- */
-
- (
- "%c",
- "%A, %B %e, %Y",
- "%B %e, %Y",
- "%e %B %Y",
- "%m/%d/%y",
- "%b %d, %Y",
- "%d %b %Y"
- )
-