Skip to content

Instantly share code, notes, and snippets.

@thatswiftguy
Created May 19, 2021 09:25
Show Gist options
  • Save thatswiftguy/31af75a017f9b01421ba245a5b5af3ed to your computer and use it in GitHub Desktop.
Save thatswiftguy/31af75a017f9b01421ba245a5b5af3ed to your computer and use it in GitHub Desktop.
let now = Date()
let olderDate = Date(timeIntervalSinceNow: -10000)
var order = Calendar.current.compare(now, to: olderDate, toGranularity: .day)
switch order {
case .orderedDescending:
print("DESCENDING")
case .orderedAscending:
print("ASCENDING")
case .orderedSame:
print("SAME")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment