could not locate an NSManagedObjectModel
could not locate an NSManagedObjectModel
- Subject: could not locate an NSManagedObjectModel
- From: Shane <email@hidden>
- Date: Sun, 20 Feb 2011 15:23:23 -0600
Trying to learn core data and I have added it to my application while
swapping out my old ways. So I have this initially ...
@synthesize managedCoreDataObjectContext;
- (void) awakeFromNib
{
...
[self setManagedCoreDataObjectContext:[[NSManagedObjectContext alloc] init]];
}
- (void) applicationDidFinishLaunching:(NSNotification *) aNotification
{
NSManagedObjectContext *context = [self managedCoreDataObjectContext];
// error is happening on this next line …
network = [NSEntityDescription
insertNewObjectForEntityForName:@"Network"
inManagedObjectContext:context];
}
+entityForName: could not locate an NSManagedObjectModel for entity
name 'Network'
Network is a class that is subclassed from NSManagedObject, and
included in my project. My *.xcdatamodel file is also included in this
project.
Any help much appreciated.
_______________________________________________
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:
This email sent to email@hidden