Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Subclassing NSManagedObject



Hi List,

I have created a class MyEntity which is a subclass of NSManagedObject. The Entity contains
one attribute ("name") and one to-many relationship ("myRelation").
In MyEntity I override the following two methods and I have one initWithName: method:


- (id) valueForKey:(NSString *)key;  {
	return [super valueForKey:key];
}

- (void) setValue: (id)value forKey: (NSString *)key {
	[super setValue:value forKey:key];
}

- (id) initWithName: (NSString *) newName {
	self = [super init];
	
	if(self)
		[self setValue:newName forKey:@"name"];
	
	return self;
}


Then I try to add an instance of MyEntity to an NSArrayController via addObject: with the code:


MyEntity *entity = [[MyEntity alloc] initWithName:@"My Name"];
[super addObject:entity];

While adding the object to the NSArrayController I get the following exception:

[<MyEntity 0x183310> setValue:forUndefinedKey:]: the entity (null) is not key value coding-compliant for the key name.

What is the reason for the exception? Do I have to add custom accessor methods to MyEntity? If yes, how might these methods
look like for a to-many relationship?


Thank you very much in advance,
Michael
_______________________________________________

Cocoa-dev mailing list (email@hidden)

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/email@hidden

This email sent to email@hidden


Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.