I have a "Today" button to reset a datePicker to today's date. This works for the current month, but not for other months.
The method is:
- (IBAction)setToday:(id)sender
{
NSLog(@"%s", __FUNCTION__);
[datePicker setDateValue:[NSDate date]];
[datePicker setNeedsDisplay: YES];
}
What am I doing wrong?