谁能告诉我如何以毫秒为单位获取当前日期?

最佳答案

有几种方法可以做到这一点,尽管我个人最喜欢的是:

CFAbsoluteTime timeInSeconds = CFAbsoluteTimeGetCurrent();

您可以阅读有关此方法here的更多信息。您还可以创建一个NSDate对象并通过调用timeIntervalSince1970来获取时间,它从1970年1月1日开始返回seconds:
NSTimeInterval timeInSeconds = [[NSDate date] timeIntervalSince1970];

在Swift中:
let timeInSeconds: TimeInterval = Date().timeIntervalSince1970

09-06 06:21