Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3221264
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T15:51:23+00:00 2026-05-17T15:51:23+00:00

I am quite familiar with regular usage patterns of Core Data, but recently stumbled

  • 0

I am quite familiar with regular usage patterns of Core Data, but recently stumbled upon a problem: Imagine a simple case where I have an Entity of person, with 2 string attributes name and company. I want to make a UITableView sorted by names and divided into sections by company name. Sound simple enough:

...
personFetchController_ = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest 
                                                             managedObjectContext:mainDataCenter.managedObjectContext
                                                               sectionNameKeyPath:@"company"
                                                                        cacheName:@"PersonListCache"];      
NSError *error = nil;
if (![personFetchController_ performFetch:&error])
{
    LogError(@"Error fetching persons: %@", [error localizedDescription]);
}
personFetchController_.delegate = self;

I register as delegate to listen to changes, especially changes to sections:

- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo 
           atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type
{
    NSIndexSet *sections = [NSIndexSet indexSetWithIndex:sectionIndex];
    switch (type) 
    {
        case NSFetchedResultsChangeInsert:
            [personTableView_ insertSections:sections withRowAnimation:UITableViewRowAnimationFade];
            break;
        case NSFetchedResultsChangeDelete:
            [personTableView_ deleteSections:sections withRowAnimation:UITableViewRowAnimationFade];
        default:
            break;
    }
}

It works very well when I add / remove / change the name of a person, but if I change a person’s company name (which means to move from one section to another), the app crashes, saying after an insert, the number of rows in the section needs to be the old value plus one.

Anyone got this working right?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T15:51:23+00:00Added an answer on May 17, 2026 at 3:51 pm

    the code which leads to this crash is most likely not in this method.

    Please post the code of this method:

    -(void)controller:didChangeObject:atIndexPath:forChangeType:newIndexPath:
    

    especially how do you respond to changes with a type of NSFetchedResultsChangeMove?

    in the Apple-Documentation for NSFetchedResultsControllerDelegate they use this for didChangeObject:…

        case NSFetchedResultsChangeMove:
            [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
                       withRowAnimation:UITableViewRowAnimationFade];
            [tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath]
                       withRowAnimation:UITableViewRowAnimationFade];
            break;
    

    Before I found out that the Apple-Documentation contains almost all code necessary for NSFetchedResultsController I used some code from the web, I guess from some tutorial, which caused a crash at rare occurences. After some time I found out I could trigger this when moving the one and only object in the first section (which will be deleted) to the second section (which will be the new first section).

    Since then I read and search Apple-Documentation first before I read tutorials ^^

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I consider myself quite fluent in PHP and am rather familiar with nearly all
Quite simple really: var req:URLRequest=new URLRequest(); req.url=http://somesite.com; var header:URLRequestHeader=new URLRequestHeader(my-bespoke-header,1); req.requestHeaders.push(header); req.method=URLRequestMethod.GET; stream.load(req); Yet,
I am pretty familiar with CSS and have used quite a bit of javascript
I'm having a small problem with my setup. I'm quite new to the Django
Quite often in ANSI C code I can see parenthesis sorrounding a single return
Quite a few comments to answers in a different post, Where are the best
Quite a while ago, I heard about Object databases. Cool concept and all. Now,
Quite often, in programming we get situations where null checks show up in particularly
Quite often I come across a nice looking or functional website, and wonder what
Quite often one has to encode an big (e.g. 128 or 160 bits) number

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.