On Fri, Dec 4, 2009 at 3:37 PM, Jim Majure <[email protected]> wrote: > NSManagedObject *project = [selectProjectController selection]; > [newTimeEntry setValue:project forKey:@"project"];
As per the documentation, -selection returns a KVC-compliant proxy object. You can't turn around and hand that off to Core Data as if it were a full-fledged instance. Use -selectedObjects instead. --Kyle Sluder _______________________________________________ Cocoa-dev mailing list ([email protected]) 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]
