从 NSDate 中省略 GMT
我正在使用这些代码获取当前时间。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将日期格式化程序的时区设置为 GMT:
Set the date formatter's time zone to GMT: