I'd like to create a tableview with the summary of Entity Cashflow. Two variables should be on it. Category and sum of values.
I can fetch all the values easily, but then I went on and read Apple's manuals of how to obtain the sum of values from nsfetchrequest class reference. It looks easy but I couldn't get it to work.
I tried to fetch it this way:
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"@UnionOfDistinctObjects.category" ascending:YES];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];
NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:context sectionNameKeyPath:@"nil" cacheName:@"Root"];
And then how do I specify that I want @"@sum.values" to come along with the cell ? I'm trying this:
cell.detailTextLabel = @"@sum.Cashflow.values";
This is not working at all. Is there an easier way to do it ?
Thanks, Farini