日付ピッカーを使用して、ユーザーに将来の日付を選択させようとしています。私は明らかにcompare:メソッドを使用しましたが、次のコードを実行すると、[NSDate date]と同じ日付であっても、ifステートメントを実行するように指示されます。これが私のコードです:
if ([datePicker.date compare:[NSDate date]] == NSOrderedAscending) // If the picked date is earlier than today
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Hmm, this date is earlier than today"
message:@"The date you've selected is earlier than today's date, please pick another"
delegate:nil
cancelButtonTitle:@"Okay, I'll pick another"
otherButtonTitles:nil];
// Show the alert
[alert show];
// Release the alert
[alert release];
}