Hi,
I have an NSDate and I want to tell if it occurs on a particular day of any year. How do I do that?
For instance, I want to see if NSDate's day and month are 25 and 12.
I want to go:
NSDate *today = [NSDate date];
int day = [today day];
int month = [today month];
Is there a way of doing that?