swift中的timeIntervalSince1970属性在哪里

时间:2015-08-18 22:33:32

标签: ios swift

我正在尝试获取当前的毫秒数并根据Google上的所有问题,我应该使用NSDate的timeIntervalSince1970属性

然而,我已经这样做了:

var startTime = NSData()
and then
startTime. timeIntervalSince1970

and
startTime. timeIntervalSince1970()

但似乎没有财产了,对吧?

如果是,请替换什么?

1 个答案:

答案 0 :(得分:1)

错误是:NSDate而非NSData 在“。”之后也不应该有空格?

var startTime = NSDate() let interval = startTime.timeIntervalSince1970

来自Apple文档:

var timeIntervalSince1970: NSTimeInterval { get }
  

如果日期对象早于1970年1月1日格林尼治标准时间上午12:00,则此属性的值为负。