如何在swift中将sql时间戳转换为日期?

时间:2016-06-10 09:50:44

标签: ios sql swift datetime timestamp

我从14655363111465540078等数据库SQL查询中获取时间戳结果。如何在swift中将这样的数字转换为当前的日期和时间?

1 个答案:

答案 0 :(得分:4)

来自 NSDateFormatter Class Reference

let date = NSDate(timeIntervalSince1970: 1465536311)