NSDateFormatter 的问题

发布于 2024-11-17 10:14:34 字数 303 浏览 2 评论 0原文

我不明白为什么这不起作用。

   NSDateFormatter * dateFormat = [[NSDateFormatter alloc] init];
   [dateFormat setDateFormat:@"dd MMMM YYYY"];
   NSDate * complDate = [dateFormat dateFromString:@"27 June 2011"];

complDate 返回 2010-12-25 21:00:00 +0000

I can't understand why this isn't working.

   NSDateFormatter * dateFormat = [[NSDateFormatter alloc] init];
   [dateFormat setDateFormat:@"dd MMMM YYYY"];
   NSDate * complDate = [dateFormat dateFromString:@"27 June 2011"];

complDate returns 2010-12-25 21:00:00 +0000.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

み零 2024-11-24 10:14:34

您需要使用小写“y”作为格式字符串:

[dateFormat setDateFormat:@"dd MMMM yyyy"];

大写“Y”表示“一年中的周”。请参阅 数据格式化指南;它包含一个指向 NSDateFormatter 使用的 Unicode 格式说明符的链接。

You need to use lowercase "y" for your format string:

[dateFormat setDateFormat:@"dd MMMM yyyy"];

Uppercase "Y" indicates "Week of Year". See the Data Formatting Guide; it contains a link to the Unicode format specifiers that NSDateFormatter uses.

厌味 2024-11-24 10:14:34

setDateFromat: 函数用于格式化 stringFromDate: 函数的字符串对象。 dateFromString: 返回 NSDate 对象。

文档中的示例:

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd 'at' HH:mm"];

NSDate *date = [NSDate dateWithTimeIntervalSinceReferenceDate:162000];

NSString *formattedDateString = [dateFormatter stringFromDate:date];
NSLog(@"formattedDateString: %@", formattedDateString);
// For US English, the output may be:
// formattedDateString: 2001-01-02 at 13:00 

setDateFromat: function used for formatting sting object for stringFromDate: function. dateFromString: returns NSDate object.

Example from Docs:

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"yyyy-MM-dd 'at' HH:mm"];

NSDate *date = [NSDate dateWithTimeIntervalSinceReferenceDate:162000];

NSString *formattedDateString = [dateFormatter stringFromDate:date];
NSLog(@"formattedDateString: %@", formattedDateString);
// For US English, the output may be:
// formattedDateString: 2001-01-02 at 13:00 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文