I have a game with a base data class that is related to many to another Player class. This is what their headlines look like
@property (nonatomic, retain) NSSet * players;
When I release the last external link that I have in the Game class, didTurnIntoFault is not called. Now, my question is that this may be due to the circular link created above (as you can see, both properties are βsavedβ), or the main data controls all of this, and the problem is somewhere in my code.
core-data
Manav
source share