帮助我处理 NSDate 格式

发布于 2024-10-22 00:09:32 字数 209 浏览 1 评论 0原文

我需要以正确的方式制作日期格式。现在我想

NSDate *dateObject = [NSDate date];
2011-03-15 05:47:12 +0000

知道为什么这个日期显示 GMT 日期为 +0000。我真的很想将其设置为用户点击应用程序时的真实 GMT 日期。

任何与此相关的评论都是值得重视的。谢谢。

Am in need of making the date format in the correct manner. Right now am gettin my

NSDate *dateObject = [NSDate date];
2011-03-15 05:47:12 +0000

I want to know why this date is showing the GMT date as +0000. I really want to make it as the real GMT date from where the user hits the app.

Any comments regarding this is appreciable. Thanks.

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

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

发布评论

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

评论(2

┼── 2024-10-29 00:09:32

有几种方法可以做到这一点。最简单的是使用NSDate的descriptionWithLocale函数。您还可以使用日期格式化程序或 NSDate 的 descriptionWithCalendarFormat:timeZone:locale: 函数。

There are several ways to do this. The easiest is to use NSDate's descriptionWithLocale function. You can also use Date Formatters or NSDate's descriptionWithCalendarFormat:timeZone:locale: function.

风轻花落早 2024-10-29 00:09:32

NSLocale 可以完成这项工作,我认为默认是从 currentLocale 设置渲染的。

NSLocale does that job, I think the default renders from currentLocale settings.

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