This is my first time comparing dates in Objective-C. I ve been searching the web for a while and all the examples I found involve building a NSDate from a string so I decided to ask a new question here... My question is as follows:
我需要知道两个NSDates是否在同一天, 忽略时间。 我有两个 < code> NSAray 包含一套日期, 我需要逐一确定第一个 < code> NSAray 中的哪一个与第二个阵列中的同一天。
- (void)setActiveDaysColor:(UIColor *)activeDaysColor
{
for (DayView *actualDay in _days)
{
NSDate *actualDayDate = [actualDay date];
for (NSDate *activeDayDate in self.dates)
{
// Comparison code
// If both dates are the same, tint actualDay with a different color
}
}
}
提前感谢您 祝您今天愉快
亚历克斯。