1

I have two dates: how do I compare which one is greater date in Objective-C?

Cœur
  • 37,241
  • 25
  • 195
  • 267
Rahul Vyas
  • 28,260
  • 49
  • 182
  • 256
  • Does this answer your question? [iOS: Compare two dates](https://stackoverflow.com/questions/6112075/ios-compare-two-dates) – Cœur Apr 20 '21 at 13:10

1 Answers1

7

From NSDate class reference:

NSDate -compare: Returns an NSComparisonResult value that indicates the temporal ordering of the receiver and another given date.

  • (NSComparisonResult)compare:(NSDate *)anotherDate

Parameters anotherDate The date with which to compare the receiver.

This value must not be nil. If the value is nil, the behavior is undefined and may change in future versions of Mac OS X.

Return Value If:

The receiver and anotherDate are exactly equal to each other, NSOrderedSame

The receiver is later in time than anotherDate, NSOrderedDescending

The receiver is earlier in time than anotherDate, NSOrderedAscending.

Discussion This method detects sub-second differences between dates. If you want to compare dates with a less fine granularity, use timeIntervalSinceDate: to compare the two dates.

Vladimir
  • 170,431
  • 36
  • 387
  • 313