开发者

NSDate formatter

I try to convert a string to NSDATE with no luck unfortunately.

Friday, October 22, 11:26:45 ET 2010

I know the options for formatting (http://sree.cc/objective-c/nsdate-format-string-in-objective-c) but i cant get it to work.

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] in开发者_如何转开发it];
[dateFormatter setDateFormat:@"???????"];

anyone?


Date Format Specifiers.

So you'd probably need something like:

[dateFormatter setDateFormat:@"eeee, MMMM dd, HH:mm:ss z yyyy"];
  • eeee - Local day of week spelled out
  • MMMM - Month spelled out
  • dd - day of month with no leading zeros
  • HH - hour of day (24 hour format)
  • mm - minutes of hour (with leading zero)
  • ss - seconds of minute (with leading zero)
  • z - timezone (short wall time)
  • yyyy - calendar year
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜