1

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

Ayrad
  • 3,996
  • 8
  • 45
  • 86

1 Answers1

1

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.

Community
  • 1
  • 1
ZhangChn
  • 3,154
  • 21
  • 41