NSFetchedResultsController not processing certain section driven moves
Posted
by JK
on Stack Overflow
See other posts from Stack Overflow
or by JK
Published on 2010-06-07T18:59:54Z
Indexed on
2010/06/12
21:12 UTC
Read the original article
Hit count: 285
I utilize a NSFetchedResultsController (frc) with a Core Data store. I implement all the frc delegate methods. The table is sporadically updated by background threads. All the inserts, deletes and updates work fine, with the exception that updates to the frc's index key for rows toward to the bottom of the table (50 rows), do not result in a section move. e.g. if "name" is the index key and the name "Victor" is changed to "Alex", the victor row now shows the name Alex, but is not moved to the top of the table alongside all other names starting with A. As I noted, this is only for rows towards the bottom of the table. If a row like "Andy" is changed to "Ben", the move is indeed processed correctly by the frc. Any suggestions to fix this would be appreciated. I do not use a frc cache. Thanks
© Stack Overflow or respective owner