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?

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top