使用 (Billy Meltdown) NSDate-helper 方法转换 Unix 时间戳并显示?

发布于 2024-12-09 06:34:21 字数 333 浏览 0 评论 0原文

我想将存储为 NSString 的 Unix 时间戳(例如 1315401371)转换为 2011 年 10 月 12 日 23:00 的日期格式。

有许多与此相关的类似问题,但我希望使用 billymeltdown / nsdate-helper 方法

我已经导入了2 个文件(.h 和 .m)到我的项目中,但还没有取得更多进展。 我已经阅读了文档,但是我对 Objective C 仍然很陌生,并且不明白我实际如何使用这些库。

提前致谢。

I would like to convert a Unix timestamp e.g 1315401371 stored as a NSString into a date format of 23:00 12 October 2011.

There are a number of similar questions being ask in relation to this however I wish to use billymeltdown / nsdate-helper methods

I have imported the 2 files (.h and .m) into my project, but have not manage to get further than that.
There is documentation, which I have read, however I am still very new to objective C and do not understand how I actual use the libraries.

Thanks in Advance.

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

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

发布评论

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

评论(1

神回复 2024-12-16 06:34:21

您应该使用NSDateFormatter

NSTimeInterval timestamp = 1315401371;
NSDate *date = [NSDate dateWithTimeIntervalSince1970:timestamp];

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"HH:mm dd MMMM yyyy"]; // use one d for 7 October instead of 07 October 

// For english month names
NSLocale *usLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
[dateFormatter setLocale:usLocale];
[usLocale release];

NSString *dateString = [dateFormatter stringFromDate:date];

[dateFormatter release];

You should use NSDateFormatter

NSTimeInterval timestamp = 1315401371;
NSDate *date = [NSDate dateWithTimeIntervalSince1970:timestamp];

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"HH:mm dd MMMM yyyy"]; // use one d for 7 October instead of 07 October 

// For english month names
NSLocale *usLocale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US"];
[dateFormatter setLocale:usLocale];
[usLocale release];

NSString *dateString = [dateFormatter stringFromDate:date];

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