从 NSDate 中省略 GMT

发布于 2024-10-31 18:14:58 字数 363 浏览 6 评论 0原文

我正在使用这些代码获取当前时间。

NSTimeInterval timeInterval = [moviePlayer currentPlaybackTime];
NSDate *currentTime = [NSDate dateWithTimeIntervalSince1970:timeInterval];

使用日期格式化程序我打印这个。它打印以下内容。

1970-01-01 05:30:12 +0530

但是,由于我认为时区的原因,时间打印为 05:30。实际上我需要这个时间是 00:00。如何像这样格式化我的日期。它必须是 1970-01-01 00:00:12 +000。

谢谢

I am getting the current time using these code.

NSTimeInterval timeInterval = [moviePlayer currentPlaybackTime];
NSDate *currentTime = [NSDate dateWithTimeIntervalSince1970:timeInterval];

Using a date formatter I print this. It prints the following.

1970-01-01 05:30:12 +0530

However the time is printed as 05:30 because of the time zone I think. Acutall I need this to be 00:00. How to format my date like that. It has to be 1970-01-01 00:00:12 +000.

Thank you

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

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

发布评论

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

评论(1

雨夜星沙 2024-11-07 18:14:58

将日期格式化程序的时区设置为 GMT:

[dateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]];

Set the date formatter's time zone to GMT:

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