Hi there,
say i have NSManagedObject A, that has a many-to-many relationship to NSManagedObject B. I have one saved instance of A and B. (not yet related)
Now I want A to save the instance of B twice in its relationship, which is of course a set. Though, since its a set it stores only one reference of B.
see: (not syntax checked)
NSArray *tmpArray = [NSArray arrayWithObjects: B1, B1, nil];
[A setB: [NSSet setWithArray: tmpArray]];
-> only one B is stored in that relationship..
Is it possible to keep track of both B's ?