我正在尝试按日期过滤 sql lite 数据库结果,但我对 ios 日期和时间对象很糟糕,并且不确定如何做到这一点。你会如何设置 NSPredicate 来过滤今天、过去 7 天、过去 30 天和过去 90 天的结果?
谢谢
我正在尝试按日期过滤 sql lite 数据库结果,但我对 ios 日期和时间对象很糟糕,并且不确定如何做到这一点。你会如何设置 NSPredicate 来过滤今天、过去 7 天、过去 30 天和过去 90 天的结果?
谢谢
例子
- (NSPredicate *)predicateForDateWithinLast30Days
{
NSDate *currentDate = [NSDate date];// get the current date
// get the date 30 days prior to current date
NSCalendar *calendar = [NSCalendar currentCalendar];
NSDateComponents *dateComps = [[NSDateComponents alloc] init];
[dateComps setDay:-30];
NSDate *date30DaysAgo = [calendar
dateByAddingComponents:dateComps
toDate:currentDate options:0];
// create the predicate
NSPredicate *last30DaysPredicate = [NSPredicate
predicateWithFormat:@"dateToCompare > %@", date30DaysAgo];
return last30DaysPredicate;
}