Objective C - NSDateFormatter 返回 nil?
NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss.sss"];
self.date = [dateFormatter dateFromString:dateString];
该代码对于此字符串
- “2007-06-10 06:31:54.935”
工作正常,但不适用于此字符串(如果时间设置为 0,则返回 nil):
- “2007-06-10 00:00: 00.000"
NSDateFormatter* dateFormatter = [[[NSDateFormatter alloc] init] autorelease];
[dateFormatter setDateFormat:@"yyyy-MM-dd HH:mm:ss.sss"];
self.date = [dateFormatter dateFromString:dateString];
the code works fine with this string
- "2007-06-10 06:31:54.935"
but doesn't work with this one (it returns nil if the time is set to 0):
- "2007-06-10 00:00:00.000"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
@"yyyy-MM-dd HH:mm:ss.SSS"
(大写 S 表示秒的小数部分)。请参阅日期格式模式指南。
Try using
@"yyyy-MM-dd HH:mm:ss.SSS"
(uppercase S for the fractional seconds).See Date Format Patterns guide.