Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an NSManagedObject called WorkOrder with a boolean property isComplete defined in a category for that class.

I use an NSFetchedResultsController to fetch these from the data store and display them in a table view. I'd like to be able to filter the results based on the isComplete property, but of course the predicate in the NSFetchedResultsController can't do that because the property is not a Core Data attribute. I also can't filter the controller's fetchedObjects array because that property is read-only.

Is there any way to do what I'm trying to do without rolling my own data structure that mimics NSFetchedResultsController but allows me to filter the results post-fetch?

share|improve this question

2 Answers

You receive an array of objects from the Core Data query, why not use filteredArrayUsingPredicate on that result to get the array you really want?

In this case you can probably abandon using the NSFetchedResultsController to fill your table directly but it will still be useful for its delegate notifications when data changes.

share|improve this answer
Right I could do that, but then I lose all of the sorting and grouping that you get for free with NSFetchedResultsController. That may be my best option though. – Jamie Forrest Dec 5 '12 at 2:59
Unless that boolean can be added to the NSManagedObject I don't know of a better way. – Adam Eberbach Dec 5 '12 at 3:15
1  
I ended up abandoning NSFetchedResultsController entirely and implementing this using an NSDictionary in order to preserve the grouping that NSFetchedResultsController gave me. I retain the sorted keys of the dictionary in a separate array. – Jamie Forrest Dec 5 '12 at 5:05
@JamieForrest, that sounds like a complete answer... care to post it and self-accept? I'll throw some points on it. – Anthony Mastrean Dec 6 '12 at 1:33
up vote 1 down vote accepted

As I said in the comments for Adam Eberbach's answer, I solved this using an NSDictionary (self.workOrdersByDate, below) to store the grouped results, as well as an NSArray (self.dateSections, below) to store the sorted keys of the dictionary.

// Fetch all the WorkOrders
NSArray *results = [WorkOrder findAll];

// Filter based on isComplete property
NSPredicate *filter;
if (self.segmentedStatus.selectedSegmentIndex == SegmentAssigned) {
    filter = [NSPredicate predicateWithFormat:@"isComplete == 0"];
} else {
    filter = [NSPredicate predicateWithFormat:@"isComplete == 1"];
}
results = [results filteredArrayUsingPredicate:filter];

// Retain an NSArray of sorted NSDate keys
self.dateSections = [[results valueForKeyPath:@"@distinctUnionOfObjects.scheduledStartDate.beginningOfDay"] sortedArrayUsingSelector:@selector(compare:)];

// Create the dictionary
self.workOrdersByDate = [[NSMutableDictionary alloc] initWithCapacity:self.dateSections.count];
for (int sectionNum = 0; sectionNum < self.dateSections.count; sectionNum++) {
    NSPredicate *sectionPredicate = [NSPredicate predicateWithFormat:@"scheduledStartDate.beginningOfDay == %@", [self.dateSections objectAtIndex:sectionNum]];
    NSArray *workOrdersForSection = [results filteredArrayUsingPredicate:sectionPredicate];
    [resultsDict setObject:workOrdersForSection forKey:[self.dateSections objectAtIndex:sectionNum]];
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.