Hi,
I have loaded item from core data in an NSMutableArray. Each item, when created, is given a due date, that the user choices.
How do I sort, so only the item that is due today is displayed?
Here is what I got so far:
NSPredicate *predicate = [NSPredicate predicateWithFormat: @"dueDate == %@", [NSDate date]];
[allObjectsArray filterUsingPredicate: predicate];
This code doesn't work however.
Thanks for any suggestions