帮助我处理 NSDate 格式
我需要以正确的方式制作日期格式。现在我想
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有几种方法可以做到这一点。最简单的是使用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.
NSLocale 可以完成这项工作,我认为默认是从 currentLocale 设置渲染的。
NSLocale does that job, I think the default renders from currentLocale settings.