我正在将本地时区转换为字符串以在屏幕上显示。为此,我使用TimeZoneLocate library。问题:由于未实施夏令时,我获得的日期结果比实际少一小时。
我从 sunrise-sunset.org 那里得到JSON,并使用以下行:日出="3:22:31 AM";日落="5:23:25 PM"。
我想过将函数isDaylightSavingTime()
与if
语句一起使用,但我不知道在哪里添加这个小时。
这是魔术发生的函数:
func UTCToLocal(incomingFormat: String, outgoingFormat: String, location: CLLocation?) -> String {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = incomingFormat
dateFormatter.timeZone = TimeZone(abbreviation: "UTC")
let dt = dateFormatter.date(from: self)
let timeZone = location?.timeZone ?? TimeZone.current
dateFormatter.timeZone = timeZone
dateFormatter.dateFormat = outgoingFormat
return dateFormatter.string(from: dt ?? Date())
}
我使用CLLocation的本地"位置",TimeZone.current由TimeZoneLocate library提供。
这是我在代码中使用它的方式:
func parce(json: Data, location: CLLocation) {
let decoder = JSONDecoder()
if let sunriseData = try? decoder.decode(Results.self, from: json) {
self.sunriseLbl.text = sunriseData.results?.sunrise.UTCToLocal(incomingFormat: "h:mm:ss a",
outgoingFormat: "HH:mm",
location: location)
sunriseLbl默认打印来自JSON的当前位置的日出数据,并通过GooglePlaces打印任何位置的日出数据。但是,在这两个方面,我都得到了错误的日期。
另外,这里有一个链接到我在 GitHub 上的项目,如果它可以帮助你帮助我:https://github.com/ArtemBurdak/Sunrise-Sunset。
提前致谢
我注意到的一件有趣的事情:TimeZone.current
返回正确的时区,但location?.timeZone
没有返回正确的时区。如果有一种方法可以实现TimeZone.current,即应用程序将始终使用用户的当前位置,那么我建议使用它。但是,如果用户可以输入自定义位置,则需要针对location?.timeZone
返回的明显不正确的时区获得解决方法。
我的解决方法如下。请注意,我们通过更改.secondsFromGMT()
属性来手动调整所需时区的位置。这就是我调整您的代码的方式,它为我的个人位置返回了正确的时区。
extension String {
func UTCToLocal(incomingFormat: String, outgoingFormat: String, location: CLLocation?) -> String {
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = incomingFormat
dateFormatter.timeZone = TimeZone(abbreviation: "UTC")
let dt = dateFormatter.date(from: self)
var timeZone = location?.timeZone ?? TimeZone.current
if timeZone.isDaylightSavingTime() {
timeZone = TimeZone(secondsFromGMT: timeZone.secondsFromGMT() - 7200)!
}
dateFormatter.timeZone = timeZone
dateFormatter.dateFormat = outgoingFormat
let output = dateFormatter.string(from: dt ?? Date())
return output
}
}
注意:时区非常复杂,并且因地而异,并且从一年中的当前时间开始变化。仅仅因为此解决方法适用于我当前当天的位置,并不意味着此解决方法始终有效。但是,您可以查看返回的timeZone.isDaylightSavingTime()
值以及当前位置,以根据需要通过timeZone = TimeZone(secondsFromGMT: timeZone.secondsFromGMT() - x
创建新时区。这是您可以实现
"我想过使用函数isDaylightSavingTime()和if语句,但我不知道在哪里添加这个小时。
你的想法。
编辑:为了记录,我使用的时区是CST,或芝加哥时间。我编写此代码的日期是 2019 年 4 月 19 日。