UnixTimestamps 在 ios 中总是关闭

发布于 2024-12-22 20:18:49 字数 158 浏览 0 评论 0原文

我已经尝试了无数种获取当前时间戳的方法,但无论我做什么,时间戳总是关闭的。 获得正确时间戳的正确方法是什么

 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 技术交流群。

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

发布评论

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

评论(1

回忆那么伤 2024-12-29 20:18:49

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];

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