So my problem is that I have NSManagedObject 'A' that has a "-many" to "b" relationship. Therefore, for each object "A" there can be many "b".
Now I want to make a copy of "b", so that "b" can be changed, but not stored, but "A" can be saved. "
For instance,
self.title = A.name; setOfB = A.setOfb;
I know this is not particularly clear, but I just want to make a temporary copy of the managed entity that I can edit, but I donβt save the changes, even if I call save.
Let me know if you have any questions, I know that I may need to clarify this to you.
kodai source share