UTC 中的 NSTimeInterval?
我正在使用以下代码计算当前时间间隔:
NSTimeInterval tInt=[[NSDate date] timeIntervalSince1970];
int tInterval=(int)tInt;
此时间戳是否采用 utc 时间?
我需要 UTC 时间的 NSTimeInterval。
请帮忙
I am calculating current time Interval using following codes:
NSTimeInterval tInt=[[NSDate date] timeIntervalSince1970];
int tInterval=(int)tInt;
Is this timestamp is in utc time ?
I need NSTimeInterval in UTC Time.
Please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSTimeInterval
是一个时间间隔,如 5 秒、2 小时、3 天等,它不是“时区”时间,而是两个时间点之间的相对时间。我不确定您到底在寻找什么,但请查看 Apple 使用时区的文档。
NSTimeInterval
is an interval of time, like 5 seconds, 2 hours, 3 days and so on it is not "in timezone" time, it is relative time between two time points.I'm not sure what exactly you looking for but have a look at Apple's doc for using timezones.