Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

getInterval() weird behaviour #790

Closed
zero0cool0 opened this issue Dec 4, 2021 · 1 comment
Closed

getInterval() weird behaviour #790

zero0cool0 opened this issue Dec 4, 2021 · 1 comment

Comments

@zero0cool0
Copy link

zero0cool0 commented Dec 4, 2021

IOS: 15.1 on a real device
XCode: 13.1
SwiftDate: 6.3.1 - installed via CocoaPods

Trying to understand the exact behaviour of getInterval() to calculate the difference in calendar days between two DateInRegion instances.
How come

       let d1 = "2021-12-04T12:00:00+01:00".toDate()!
       let d2 = "2021-12-05T06:00:00+01:00".toDate()!
       debugPrint(d1.getInterval(toDate: d2, component: .day))

outputs 1, which is what I would expect, but

      let d1 = "2021-12-04T12:00:00+01:00".toDate()!
      let d2 = "2021-12-05T00:00:00+01:00".toDate()!
      debugPrint(d1.getInterval(toDate: d2, component: .day))

outputs 0 which is unexpected, as clearly, d2 is one day after d1 ?

@mhmdzaid
Copy link

mhmdzaid commented Jan 7, 2022

it's a half day (12 h) difference based on the hours in the date @zero0cool0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants