我知道如何比较日期。在我的情况下,让 Date1 = 2011-10-14 & Date2 =2011-10-20 。我想检查 10 月 15 日是否在 Date1 和 Date2 之间。我为此使用以下代码:
if ( [date compare:Date1] == NSOrderedDescending && [date compare:Date2] == NSOrderedAscending) {
//write codes
}
但这不会检查 10 月 15 日是否位于 10 月 14 日至 20 日之间。而是检查整个日期。那么,我将如何实现这一点。提前谢谢。