DateFormatter 在日期前一天给出

DateFormatter is Giving a Day before date

我正在使用以下代码来解析时间戳值。但是,当我将其转换为日期时,它给出了正确的值 (03-08-2021),但随后我尝试将此日期转换为字符串以满足我的要求。

但是该字符串产生了错误的值 03-07-2021。以下是我正在使用的代码。

    let epocTime = TimeInterval(1615161600000/1000)
    let date = Date(timeIntervalSince1970: epocTime)
    print(date)
    let dateFormatter = DateFormatter()
    dateFormatter.dateFormat = "yyyy-MM-dd"
    dateFormatter.timeZone = .current
    dateFormatter.locale = .current
    let dateString = dateFormatter.string(from: date)
    print(dateString)

您将 Date - 这是一个时间点 - 与格式化的日期字符串混合在一起,这是您可以在手表或日历上看到的内容。 Date 始终引用 UTC(f.k.a。格林威治标准时间),因此 print(date) 的输出不会打印日历日期,而是打印 UTC 日期和时间。 如果将该日期转换为“日历条目”(通过指定时区等),则您将获得本地手表上显示的值,时间为 2021 年 3 月 8 日午夜的 UTC 时间。 如果你住在格林威治以西,这将是前一天,因为你还在 3 月 7 日,等待新的一天到来。