iOS4:DateFormatter 返回 NULL

发布于 2024-11-30 18:36:47 字数 365 浏览 0 评论 0原文

我有一个具有以下格式的字符串: 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 技术交流群。

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

发布评论

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

评论(1

梦年海沫深 2024-12-07 18:36:47

当您使用[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.

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