Reputation: 4122
I wonder how I can create a 10 digit unix timestamp
NSDate().timeIntervalSince1970
will print: 1478638179.2932
I would like to only print:
1478638179
Upvotes: 2
Views: 3729
Reputation: 318854
You mean you just want the integral part of the value?
let seconds = Int(NSDate().timeIntervalSince1970)
Upvotes: 15