以正确的方式从 Int 构造日期

Constructing date from Int the right way

所以我从后端得到了这个答案:

{ "SERVERDateTimeGet": { "Return Code" : 0,
    "Return String" : "No Error",
    "Year" : 2018,
        "Month" : 8,
        "Day" : 29,
        "Hour" : 14,
        "Minute" : 16,
        "Second" : 20,
        "Daylight" : 1,
        "NTP" : 0,
        "NtpDhcp" : 0,
        "NtpServers" : "time.google.com",
        "Timezone" : "EET-2EEST,M3.5.6/0:01,M9.1.5" }
 }

(我知道这很糟糕,非常糟糕,但我得到的是时间)

我有这个方法:

func makeDate(year: Int, month: Int, day: Int, hr: Int, min: Int, sec: Int) -> Date {
    let calendar = Calendar(identifier: .gregorian)
   // calendar.timeZone = TimeZone.current
    let components = DateComponents(year: year, month: month, day: day, hour: hr, minute: min, second: sec)
    //let components = DateComponents(timeZone: TimeZone.current, year: year, month: month, day: day, hour: hr, minute: min, second: sec)
    return calendar.date(from: components)!
}

但是当我得到日期时,它是 3 小时前的。 我假设这是因为时区,但如您所见,我没有使用时区。 有没有其他方法来构建日期或只使用当前整数?

如果您不设置时区,这意味着您的时间将采用 UTC,因此您有 -3 小时的时差。要获得正确的值,您需要配置 TimeZone。你可以看看here