I have two dates: 2009-05-11 and the current date. I want to check whether the given date is the current date or not. How is this possible.
|
|
||||
|
|
|
Cocoa has couple of methods for this: in NSDate
When you use
example:
|
|||||||||||
|
|
Here buddy. This function will match your date with any specified date and will tell weather they match or not. You can also modify the components to match your requirements.
Regards, Naveed Butt |
|||
There are other ways that you may use to compare an NSDate objects. Each of the methods will be more efficient at certain tasks. I have chosen the compare method because it will handle most of your basic date comparison needs. |
||||
|
|
|
If you make both dates
You can take a look at the docs here. |
|||
|
|
Enjoy coding...... |
||||
|
|
|
This category (found here http://webd.fr/637-comparer-deux-nsdate) offers a neat way to compare NSDates:
And the implementation:
Simple to use:
|
||||
|
|
|
In Cocoa, to compare dates, use one of Documentation: |
|||
|
|
|
The best way I found was to check the difference between the given date and today:
According to Listing 13 of Calendrical Calculations in Apple's Date and Time Programming Guide [NSCalendar ordinalityOfUnit:NSDayCalendarUnit inUnit: NSEraCalendarUnit forDate:myDate] gives you the number of midnights since the start of the era. This way it's easy to check whether the date is yesterday, today, or tomorrow.
|
|||
|
|
|
What you really need is to compare two objects of the same kind.
|
|||||||
|
|
..
|
|||||||||||||
|
