NSDate 格式化程序

发布于 2024-10-11 18:34:32 字数 312 浏览 2 评论 0原文

不幸的是,我尝试将字符串转换为 NSDATE 但没有成功。

星期五,10 月 22 日,11:26:45 ET 2010

我知道格式化选项(http://sree.cc/objective-c/nsdate-format-string-in-objective-c),但我无法让它工作。

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"???????"];

有人吗?

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] init];
[dateFormatter setDateFormat:@"???????"];

anyone?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一萌ing 2024-10-18 18:34:32

日期格式说明符

因此,您可能需要类似的内容:

[dateFormatter setDateFormat:@"eeee, MMMM dd, HH:mm:ss z yyyy"];
  • eeee - 当地星期几拼写出来
  • MMMM - 月份拼写出来
  • dd - 一个月中的某一天,没有前导零
  • HH - 一天中的小时(24 小时格式)
  • mm - 小时中的分钟(带有前导零)
  • ss - 分钟中的秒(带有前导 零)前导零)
  • z - 时区(短墙时间)
  • yyyy - 日历年

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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文