thanks, but the "super-clean" didn't work as well ;)
i tried something different and now everything works fine, as it seems
up to now...
what i did was mentioned here:
http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/CoreData/Articles/cdUsingMOM.html
changing RKManagedObjectStore.m
Line 70:
if (nilOrManagedObjectModel == nil) {
// NOTE: allBundles permits Core Data setup in unit tests
nilOrManagedObjectModel = [NSManagedObjectModel
mergedModelFromBundles:[NSBundle allBundles]];
}
to:
if (nilOrManagedObjectModel == nil) {
// NOTE: allBundles permits Core Data setup in unit tests
NSString *modelPath = [[NSBundle mainBundle]
pathForResource:@"dataModel" ofType:@"momd"];
NSURL *modelURL = [NSURL fileURLWithPath:modelPath];
nilOrManagedObjectModel = [[NSManagedObjectModel alloc]
initWithContentsOfURL:modelURL];
}
i don't know if that changes may cause some different problems, but
for now i can live with that, or is there a better way to do things?