私は2 NSDates
、a、startdate
およびを持っていenddate
ます。これらの日付の形式は次のとおりです。
startDate = 2013-02-22 12:00:00 +0000; endDate = 2013-02-25 13:00:00 +0000;
次に、これらの日付を比較します。したがって、私はこのコードを持っています。
if([event.startDate isEqualToDate:event.endDate]){
NSLog(@"event %@ is in the same day",event.title);
}else{
NSLog(@"event %@ is NOT in the same day",event.title);
}
しかし、問題は、それが常にelseステートメントに含まれることです。startDateとendDateが同じ日、月、年にある場合は、最初に表示されNSLog
、2番目に表示されるようにします。NSLog
何か助けはありますか?