iOS4:DateFormatter 返回 NULL
我有一个具有以下格式的字符串: 2011-08-19T00:00:00 现在我想将其更改为以下日期格式: 2011 年 8 月 19 日
我这样使用 NSDateFormater :
NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease];
[formatter setDateFormat:@"MMMM dd, yyyy"];
NSDate *date = [formatter dateFromString:shiftNote.startDate];
但没有成功,日期始终是无效的。
失败在哪里?
BR
I have a String which has the following format: 2011-08-19T00:00:00 and I want now to change it in the following date format: August 19, 2011
I used the NSDateFormater this way:
NSDateFormatter *formatter = [[[NSDateFormatter alloc] init] autorelease];
[formatter setDateFormat:@"MMMM dd, yyyy"];
NSDate *date = [formatter dateFromString:shiftNote.startDate];
But without success, date is always null.
Wheres the failure?
BR
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用
[formatter setDateFormat:@"%B %d, %Y"];
时,这意味着您必须已经有一个采用这种格式的日期。由于“2011-08-19T00:00:00”不是这种格式,因此您必须首先将其转换为日期,然后再转换回字符串。When you use
[formatter setDateFormat:@"%B %d, %Y"];
, that means you must have a date already in this format. Since "2011-08-19T00:00:00" is not in this format, you'll have to convert it to a date first, then back to a string.