I am trying to filter my table with only relevant records by date range.
NSPredicate *currentDaypredicate =
[NSPredicate predicateWithFormat: @"account.entries.dateCreated > %@ AND
account.entries.dateCreated < %@ ", yesterday, tomorrow];
[accountArrayController setFilterPredicate:currentDaypredicate];
But of course this is wrong because I'm getting-
[NSCFSet compare:]: unrecognized selector sent to instance
Can someone please give me a clue or example?