vote up 0 vote down star

how to compare two date in objective c

that is . i have two date..

2009-05-11 and current-date

i want check the given date is current-date or not...

how it is possible...

pls help me detailed ..

thanks and regards .. by raju..

flag

0% accept rate

2 Answers

vote up 1 vote down

..

NSString *date = @"2009-05-11"
NSString *nowDate = [[[NSDate date]description]substringToIndex: 10];
if([date isEqualToString: nowDate])
{
// your code
}
link|flag
1  
I think it'd be much more useful to turn "date" into an NSDate object and then compare NSDate objects. This code will work, but substringToIndex:10 is really a hack. If you need more information, such as which date is more recent - you'd need to do it that way, too. – Ben Gotow Jun 4 at 19:54
Of course, you can compare NSDate objects. But NSDate has information about Date and TIME Your need 1. Create NSDate from string 2. REmove from current-date information about time (set time to 00:00:00) And only after that compare dates. I think that this way is not easy and quick. – oxigen Jun 5 at 9:28
If you're only interested in the day itself, you can create NSDates then use NSCalendar to get NSDateComponents out of it, at which point you can numerically compare just the values you're interested in. You could also get components for the number of days since the epoch, to use in a single comparison. – Jim Dovey Jun 5 at 12:46
vote up 1 vote down

Hi,

What you really need is to compare two objects of the same kind.

  1. create an NSDate out of your String date (@"2009-05-11") :
    http://blog.evandavey.com/2008/12/how-to-convert-a-string-to-nsdate.html

  2. if current-date is a string too, make it an NSDate. if its already an NSDate, leave it.

link|flag
2  
You can't compare two objects, by using == – oxigen Jun 4 at 10:31
my mistake, answered another question at the same time. Thank you for commenting that. – yn2 Jun 4 at 11:43

Your Answer

Get an OpenID
or

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