NSDateFormater 帮助
我正在尝试设置给定日期字符串的格式,但无法使其正常工作。这是我正在使用的代码:
[dateFormatter setDateFormat:@"yyyy-MM-dd hh:mm:ss"];
日期 = [dateFormatter dateFromString:@"2011-05-08 18:31:42"];
但我一直得到(空)日期, 任何帮助将不胜感激。
I am trying to set the format for a given dateString but I am not able to get it working. Here is the code I am using:
[dateFormatter setDateFormat:@"yyyy-MM-dd hh:mm:ss"];
date = [dateFormatter dateFromString:@"2011-05-08 18:31:42"];
but I keep getting (null) for the date,
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hh
应为HH
。hh
表示 12 小时制,HH
表示 24 小时制。这是经过更改的代码:hh
should beHH
.hh
is for 12-hour time andHH
is 24-hour time. Here's your code with the changes: