在Cocoa中显示日期

时间:2010-07-06 09:39:53

标签: cocoa

如果我运行以下代码:

[textView setString:  [ NSString stringWithFormat: @"Hello %@. Today is %@", [ textField stringValue ], [ NSDate date]] ];

它说

  

你好Phenom。今天是2010-07-06   02:37:43 -0700

如何修复它以便改为

  

你好Phenom。今天是7月的星期二   6

1 个答案:

答案 0 :(得分:4)

您需要使用NSDateFormatter 您可以在doc ...

中看到一个示例