I have a UITableViewController fetching a collection of objects A with a NSFetchedResultsController.
This works well and if these objet A's properties are updated, the UITableViewCell for A reflects the change.
The problem: this object has a relationship A->[B1, B2, B3...]. The cell is using some of the B's properties in its display. If I update one of the B's properties, the UITableViewCell doesn't reflects the change.
How can I make the cell change when I update one of the B, without reloading the whole tableview. Is there a way to mark an object to update?