NSDate 格式化程序
不幸的是,我尝试将字符串转换为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
日期格式说明符。
因此,您可能需要类似的内容:
eeee
- 当地星期几拼写出来MMMM
- 月份拼写出来dd
- 一个月中的某一天,没有前导零HH
- 一天中的小时(24 小时格式)mm
- 小时中的分钟(带有前导零)ss
- 分钟中的秒(带有前导 零)前导零)z
- 时区(短墙时间)yyyy
- 日历年Date Format Specifiers.
So you'd probably need something like:
eeee
- Local day of week spelled outMMMM
- Month spelled outdd
- day of month with no leading zerosHH
- 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