I have a core data project with two entities, Call and CallEvent.
In the Call entity, I have a to-many relationship to CallEvent.
I create the two objects in code with
thecall = [NSEntityDescription insertNewObjectForEntityForName:@"Call"
inManagedObjectContext:[self managedObjectContext]];
and
thecallevent = [NSEntityDescription
insertNewObjectForEntityForName:@"CallEvent" inManagedObjectContext:
[self managedObjectContext]];
I now want to add the callevent object to thecall object. I see in the
NSManagedObject subclass Call there is a method prepared for this,
- (void)addCallEventsObject:(CallEvent *)value;
simply doing
[thecall addCallEventsObject:thecallevent];
is not working, of course. So how do I add this object?
Ivan
_______________________________________________
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [EMAIL PROTECTED]