将 UnixTimeStamp 转换为带有夏令时的 NSDate
我有一个 GMT 时间戳“1273051632”,其中 GMT 偏移量为 -5。我想在我的 iPhone 应用程序中将其转换为采用夏令时的本地时间。使用 NSdateFormatter 转换它给了我
1273051632 转换为 2010 年 5 月 5 日星期三 04:27:12 (GMT -5)
这不是添加夏令时...
(正确的结果应该是 2010 年 5 月 5 日星期三 05:27:12 (GMT -5)),对吗?
请帮助我如何将上述 Unixtimestamp 转换为 NSString 会计夏令时。提前致谢。
I have a GMT timestamp "1273051632" where GMT offset is -5.I want to convert this into local time with day light saving time in my iPhone application. Converting it using NSdateFormatter gives me
1273051632 translates to Wednesday, May 5th 2010, 04:27:12 (GMT -5)
This is not adding day light saving time...
(The correct result should be Wednesday, May 5th 2010, 05:27:12 (GMT -5)) , right ?
Please help me how to convert above Unixtimestamp to NSString accounting day light saving time .Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样
[NSDate dateWithTimeIntervalSince1970:seconds]
how about
[NSDate dateWithTimeIntervalSince1970:seconds]