Question

how do I ask core data to fetch me the last 30 elements entered or alternatively the elements entered within a month of today?

Was it helpful?

Solution

To fetch a certain number of records, use qualification like [fetchRequest setFetchLimit:30] in combination with NSPredicate instance you desired.

To retrieve elements within a range of time, you need first calculate the beginning and the end NSDate instances of the period you want, then code your predicate instance like:

NSPredicate *predicate = [NSPredicate predicateWithFormat:
            @"(date >= %@) AND (date <= %@)", startDate, endDate];

See this and this.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top