在iOS中如何在java中获取类似System.currentTimeMillis()的当前时间?

时间:2016-02-20 15:35:05

标签: ios swift

在Java中我们使用System.currentTimeMillis()来获取时间,iOS中是否有类似的方法?

3 个答案:

答案 0 :(得分:10)

NSDate().timeIntervalSince1970 * 1000

答案 1 :(得分:0)

您可以使用: NSDate().timeIntervalSince1970

“日期对象与1970年1月1日00:00:00 UTC之间的间隔。”

答案 2 :(得分:0)

如果我们正在谈论以毫秒为单位的时间,我会使用CACurrentMediaTime()。考虑到毫秒是小数部分。