Hello,
I would like to know if I can do this
VIEW 1: use NSFetchedResultsController on TABLEA to retrieve the data, display in a table view and take actions to save it
NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:referringObject sectionNameKeyPath:nil cacheName:@"TABLEA"];
and then in VIEW 2 use NSFetchedResultsController on the SAME table i.e. TABLEA to retrieve the data without table view and go back to VIEW 1 to save that previous managed object ??