gpt4 book ai didi

ios - Swift 中的 DateComponents 返回奇怪的值。为什么?

转载 作者:搜寻专家 更新时间:2023-11-01 06:37:03 31 4
gpt4 key购买 nike

我正在计算两个日期之间的时差。我有一段代码:

func timeAgoSinceDate(_ date:Date, numericDates:Bool) -> String {
let calendar = Calendar.current
let now = Date()
let components:DateComponents = (calendar as NSCalendar).components([NSCalendar.Unit.minute , NSCalendar.Unit.hour , NSCalendar.Unit.day , NSCalendar.Unit.weekOfYear , NSCalendar.Unit.month , NSCalendar.Unit.year , NSCalendar.Unit.second], from: now, to: date, options: NSCalendar.Options())
print(now)
print(date)
print(components.month)

这些是我在控制台中看到的一些示例:

2016-10-29 16:12:34 +0000
2017-03-29 16:03:13 +0000
Optional(4) //I think it should return 5?


2016-10-29 16:12:34 +0000
2017-01-29 17:03:13 +0000
Optional(2) //again, why 2 instead of 3?

2016-10-29 16:12:34 +0000
2015-09-30 15:54:20 +0000
Optional(0) //why 0 since it's almost whole year?


2016-10-29 16:12:34 +0000
2016-05-29 14:09:31 +0000
Optional(-5) //this seems to be fine

等等...这里有什么问题?

我遇到的问题是日期计算。在我的代码中我正在做:

if (components.month! >= 2) {
return "in \(components.month!) months"
} else if (components.month! >= 1){
if (numericDates){
return "in 1 month"
} else {
return "in one month"
}
}

else if (components.month! <= -2) {
return "\(components.month!) months ago"
} else if (components.month! <= -1){
if (numericDates){
return "1 month ago"
} else {
return "one month ago"
}
}

然后,由于我的计算,当前一个日期是 2016-10-29 16:32:54 +0000,另一个是 2017-01-29 17 :03:13 +0000,用户在 2 个月内 看到。那是因为整个 print(components) 返回:

year: 0 month: 2 day: 2 hour: 23 minute: 30 second: 18 weekOfYear: 4 isLeapMonth: false 

但在现实生活中它应该返回 3,因为它是 10 月和 1 月之间的差异。有没有比一堆 if 语句四舍五入更好的计算差异的方法?

最佳答案

2016-10-29 16:12:34 +0000
2017-03-29 16:03:13 +0000
Optional(4) //I think it should return 5?

因为 16:03 是 < 16:12,你需要再增加 9 分 21 秒才能返回 5

2016-10-29 16:12:34 +0000
2017-01-29 17:03:13 +0000
Optional(2) //again, why 2 instead of 3?

夏令时是 2016 年 11 月 6 日。您损失了一个小时。我相当确定这就是它认为只有 2 个月时间的原因。

加一个小时:

2016-10-29 16:12:34 +0000
2017-01-29 18:03:13 +0000
Optional(3)

你得到'3'

更改月份但保留原来的时间:

2016-7-29 16:12:34 +0000
2016-10-29 17:03:13 +0000
Optional(3)

你也得到'3'

2016-10-29 16:12:34 +0000
2015-09-30 15:54:20 +0000
Optional(0) //why 0 since it's almost whole year?

日期组件返回您在组件定义中包含的最高单位的差异。在您的例子中,您包含了 NSCalendar.Unit.year。因此 components.month 将返回月份单位,而不是月份的总差。所以这个计算中的月份单位是0月份。如果您要将某个日期加上 25 年零 5 个月,它将返回“5”。但是,如果您要删除 NSCalendar.Unit.year,那么它将使用月作为最高单位并返回“305”

你可以像这样测试一些日期:

let startString = "2016-7-30 16:12:34 +0000"
let endString = "2016-10-30 17:03:13 +0000"

let formatter = DateFormatter()
formatter.dateFormat = "yyyy-MM-dd HH:mm:ss Z"
let now = formatter.date(from: startString)!
let date = formatter.date(from: endString)!

关于ios - Swift 中的 DateComponents 返回奇怪的值。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40321108/

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