Swift4 で現在の unixtime を取得する

import Foundation

let date: Date = Date()
let unixtime: Int = Int(date.timeIntervalSince1970)
print(unixtime)