gpt4 book ai didi

swift - 字符串日期到日期返回错误的时间

转载 作者:可可西里 更新时间:2023-11-01 02:13:16 26 4
gpt4 key购买 nike

我有以下 dateFormatter:

var date = Date()
var dateFormatter = DateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
let timeZone = NSTimeZone(name:"UTC+01:00")
dateFormatter.timeZone = timeZone as TimeZone!

let sweDate = dateFormatter.string(from: date)

当我打印出来时,我得到了这些值:

1: print(date) // 2016-11-01 10:16:19 +0000
2: print("\(dateFormatter.string(from: date))") // 2016-11-01 11:16:35
3: print(dateFormatter.date(from: sweDate)!) // 2016-11-01 10:16:41 +0000

second value 是字符串格式的正确值,但是当我将其转换为 Date() 时,我得到了错误的时间,third print .为什么会发生这种情况,我该如何解决?这是瑞典时区。

最佳答案

因为 String 'sweDate' 不包含时区信息,所以你得到的是零时区的时间。

关于swift - 字符串日期到日期返回错误的时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40358114/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com