I've seen many posts showing how to add or remove core data objects from an NSMutableSet for a "to-many" relationship. However, how do you update an existing one? Specifically, I am displaying a table of objects from the "many" side of a one-to-many relationship in a ViewController. When the user clicks on a table row (representing one of these objects), I would like to send this particular object to another ViewController via the prepareForSegue method. I have no problems doing this with "one" side of the relationship. But I'm having trouble doing it with the "many" side of the relationship. Can you please post an example of how to send an object from the "many" side of the relationship to another ViewController, have that VC update it and save it to core data?
Thank you very much!!!!