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

All,

I have a Table View Controller "AllAnswersTVC" which is a NSFetchedResultsControllerDelegate and also acts as the delegate and datasource for the UITableView. My problem is that it sorts based on the "displayOrder" attribute from the "Answers" entity which is an Integer 16 (not a string) and displays correctly after what seems like a magical number of times moving back and forth through the navigation controller's views. When I segue from "AllAnswersTVC" to "AddAnswerTVC" and insert a new object and save the context, going back to "AllAnswersTVC" doesn't display the objects sorted by the "displayOrder" but instead appears to be sorted at random. Any ideas on what I could try. I'm banging my head against the wall on this.

UPDATE: After reviewing the log from the NSFetchRequest output, I'm seeing a difference. This first NSFetchRequest is displaying the data in the correct order. The second NSFetchRequest called after adding an object to the Managed Object Context is different and causes the display to not be sorted. What is causing the difference?

2012-09-11 00:51:48.192 MQFQuiz[29980:c07] Request: <NSFetchRequest: 0x6b5ae90> (entity: Questions; predicate: (quiz == <Quizzes: 0x6d467c0> (entity: Quizzes; id: 0x6d4d060 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Quizzes/p1> ; data: {
question = "<relationship fault: 0x6b5fc10 'question'>";
quiz = "c-17";
})); sortDescriptors: ((
"(displayOrder, ascending, compare:)"
)); type: NSManagedObjectResultType; )

This second and incorrect displaying NSFetchRequest:

2012-09-11 00:51:54.877 MQFQuiz[29980:c07] Request: <NSFetchRequest: 0x6b9cee0> (entity: Questions; predicate: (quiz == <Quizzes: 0x6d467c0> (entity: Quizzes; id: 0x6d4d060 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Quizzes/p1> ; data: {
question =     (
    "0x6b5e0c0 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Questions/p14>",
    "0x6b5dd80 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Questions/p9>",
    "0x6b5dd30 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Questions/p2>",
    "0x6b5e0b0 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Questions/p13>",
    "0x6b82c90 <x-coredata:///Questions/t85B01E77-69F1-460E-9C25-DBC31F9BBB9A2>",
    "0x6b5dd70 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Questions/p8>",
    "0x6b5e0f0 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Questions/p17>",
    "0x6b5dd20 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Questions/p6>",
    "0x6b5e0a0 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Questions/p12>",
    "0x6b5dd60 <x-coredata://D02B5452-7C01-4506-832E-92A8642D3B7E/Questions/p7>",
    "(...and 8 more...)"
);
quiz = "c-17";
})); sortDescriptors: ((
"(displayOrder, ascending, compare:)"
)); type: NSManagedObjectResultType; )

The pertinent code for AllAnswersTVC is:

- (void) viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[self setupFetchedResultsController];
[self setupEditButton]; 
}

- (void) setupFetchedResultsController {
NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Answers"];
//defines the predicate
request.predicate = [NSPredicate predicateWithFormat:@"question = %@", self.selectedQuestion];
//defines the sort
request.sortDescriptors = [NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@"displayOrder" ascending:YES]];

self.fetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:request
                                                                    managedObjectContext:self.managedObjectContext
                                                                      sectionNameKeyPath:nil
                                                                               cacheName:nil];
}

- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([segue.identifier isEqualToString:@"addNewAnswer"]) {
    AddAnswerTVC *tvc = segue.destinationViewController;
    tvc.managedObjectContext = self.managedObjectContext;
    tvc.selectedQuestion = self.selectedQuestion;
    tvc.maxDisplayOrder = [NSNumber numberWithUnsignedInteger:[self.fetchedResultsController.fetchedObjects count]];
    NSLog(@"%@",[NSNumber numberWithUnsignedInteger:[self.fetchedResultsController.fetchedObjects count]]);
}

    #pragma mark - Fetching
- (void)performFetch {
if (self.fetchedResultsController) {
    NSError *error;
    [self.fetchedResultsController performFetch:&error];
[self.tableView reloadData];
}
- (void)setFetchedResultsController:(NSFetchedResultsController *)newfrc {
NSFetchedResultsController *oldfrc = _fetchedResultsController;
if (newfrc != oldfrc) {
    _fetchedResultsController = newfrc;
    newfrc.delegate = self;
    if ((!self.title || [self.title isEqualToString:oldfrc.fetchRequest.entity.name]) && (!self.navigationController || !self.navigationItem.title)) {
        self.title = newfrc.fetchRequest.entity.name;
    }
    if (newfrc) {
        if (self.debug) NSLog(@"[%@ %@] %@", NSStringFromClass([self class]), NSStringFromSelector(_cmd), oldfrc ? @"updated" : @"set");
        [self performFetch]; 
    } else {
        if (self.debug) NSLog(@"[%@ %@] reset to nil", NSStringFromClass([self class]), NSStringFromSelector(_cmd));
        [self.tableView reloadData];
    }
}
}

The pertinent code for AddAnswerTVC (the view that is segued to in order to make an addition) is:

- (void) viewWillDisappear:(BOOL)animated {
if ([self.answerNameInput.text length]) {
    Answers *newAnswer = [NSEntityDescription insertNewObjectForEntityForName:@"Answers"
                                                           inManagedObjectContext:self.managedObjectContext];
    newAnswer.answer = self.answerNameInput.text;
    newAnswer.question = self.selectedQuestion;
    NSUInteger maxDisplayOrder = [self.maxDisplayOrder unsignedIntegerValue] + 1;
    newAnswer.displayOrder = [NSNumber numberWithUnsignedInteger:maxDisplayOrder];

    [self.managedObjectContext save:nil];
}
[super viewWillDisappear:animated];
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.