I think you misunderstood that.
I have a Core Data app with a UITabBarController containing two tabs: List and Favorites.
In "List" the user can choose a list element and tap on the button "add to favorite". That sets a property (a BOOL) for the represented object in Core Data.
When I now go to the "Favorites" tab, there will be made a fetch request to get all objects where this BOOL is TRUE an these objects will be presented in the table view.
Now I want to set this BOOL property to FALSE again to remove it from the user's favorites. This should happen, when the user swipes across a cell on a table view in the "Favorites" tab. I do not want to remove this object from the data array (which STV generates internally), I really just want to set this property.
Do you know what I mean?