vote up 0 vote down star

i have two dates i want to compare which one is greater date how do i do this in objective-c?

flag

1 Answer

vote up 4 vote down check

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.

link|flag
You'll need to use NSDateFormat to convert your strings to dates. – Epsilon Prime Nov 7 at 16:16
There's also -[NSDate earlierDate:] and -[NSDate laterDate:], which are more appropriate if what you really care about is finding the latest of two dates. – Kevin Ballard Nov 8 at 8:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.