When creating an NSFetchRequest to go to my NSFetchedResultsController I set the fetchLimit property to 3.
Now initially it looks fine. I can change the first three returned objects in any way that changes their order, and they are all shuffled correctly. The problem arises when I either modify the object that originally fell in the first three, in a way that now transfers it to the first three, or simply adding a new object so that it appears during the first three.
What I expected to see: a nested object pushes the others down and one drops down.
What actually happens: The nested object pushes the rest, and the number of entries increases to 4 ?!
Can someone explain this or how should I handle this?
ios core-data nsfetchedresultscontroller nsfetchrequest
trapper
source share