Hi, I am trying to build a datepicker which has today as a minimum date and 1 Feb 2011 as Maximum date.
I have set the minimum date as followed
[picker setMinimumDate: [NSDate date]];
and this works just fine but the MaximumDate does not seem to be correct.
[picker setMaximumDate: [NSDate dateWithNaturalLanguageString:@"11/02/01"]];
How do I set the maximum date correctly?