UnixTimestamps 在 ios 中总是关闭
我已经尝试了无数种获取当前时间戳的方法,但无论我做什么,时间戳总是关闭的。 获得正确时间戳的正确方法是什么
NSLog(@"%@",NSTimeIntervalSince1970);
虽然是最接近的,但它仍然不正确。有什么建议吗?
I've tried countless ways of getting the current timestamp and no matter what I do the timestamp is always off.
What is the proper way to get the right timestamp
NSLog(@"%@",NSTimeIntervalSince1970);
Was the closest one however, it's still not right. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NSTimeIntervalSince1970 是一个#define,为您提供 1970 年和 1970 年之间的秒数。 2001 年 1 月 1 日。即它永远是一样的。你想要做类似的事情
[[NSDate date] timeIntervalSince1970];
NSTimeIntervalSince1970 is a #define and gives you the number of seconds between 1970 & 1/1/2001. i.e. it'll always be the same. you want to do something like
[[NSDate date] timeIntervalSince1970];