这种时间戳叫什么,我如何将它转换为人类可读的日期?
What is this kind of timestamp called and how do I convert it to human-readable dates?
它用于例如 iOS iTunes 媒体库 sqlite 数据库。
551718055 是 2018-06-26 17:00:55
593288552 是 2019-10-20 20:22:32
这些是使用参考日期的时间间隔:
let timestamp = 593288552
let date = Date(timeIntervalSinceReferenceDate: timestamp)
现在您可以根据需要使用 DateFormatter 格式化日期以显示给用户。
它用于例如 iOS iTunes 媒体库 sqlite 数据库。
551718055 是 2018-06-26 17:00:55
593288552 是 2019-10-20 20:22:32
这些是使用参考日期的时间间隔:
let timestamp = 593288552
let date = Date(timeIntervalSinceReferenceDate: timestamp)
现在您可以根据需要使用 DateFormatter 格式化日期以显示给用户。