简体   繁体   中英

How to query data from the last 7 days(week) on parse

I am trying to query data from the last 7 days(week) on parse. How could I do that. I have been researching many articles/forums, but they all seem to be outdated.

You'd use something like:

NSDate *date = [NSDate dateWithTimeIntervalSinceNow:604800];
[query whereKey:@"createdAt" lessThan:date];

where 604800 is the number of seconds in a week.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM