我在xcode 3.2中创建了一个Core Data模型,在Xcode 4.2中升级后,我添加了一个NSManagedObject子类的新实体(参考新实体)。
首先,它看起来很奇怪,因为它与旧版本不在同一组中。这是我的xcode 4.2上的图片(AlkitabDB是我在xcode 3.2中创建的,EndeDB是当前xcode版本中的新版本(4.2):
第二件事,我让它原样,然后我以与第一个实体(旧实体)相同的方式访问第二个实体(新实体),并出现标题错误。
这是错误:
2012-01-16 21:13:38.496 iHuria[55953:207] Unresolved error Error Domain=NSCocoaErrorDomain Code=134100 "The operation couldn’t be completed. (Cocoa error 134100.)" UserInfo=0x8829cd0 {metadata=<CFBasicHash 0x882a370 [0x1839b38]>{type = immutable dict, count = 7,
entries =>
2 : <CFString 0x8829b90 [0x1839b38]>{contents = "NSStoreModelVersionIdentifiers"} = <CFArray 0x8829ff0 [0x1839b38]>{type = immutable, count = 0, values = ()}
4 : <CFString 0x8829bc0 [0x1839b38]>{contents = "NSPersistenceFrameworkVersion"} = <CFNumber 0x8829770 [0x1839b38]>{value = +320, type = kCFNumberSInt64Type}
6 : <CFString 0x8829bf0 [0x1839b38]>{contents = "NSStoreModelVersionHashes"} = <CFBasicHash 0x882a080 [0x1839b38]>{type = immutable dict, count = 1,
entries =>
0 : <CFString 0x882a010 [0x1839b38]>{contents = "AlkitabDB"} = <CFData 0x882a030 [0x1839b38]>{length = 32, capacity = 32, bytes = 0xd02ac5f8be6ab0b39add450aca202ac0 ... 3d45d462998d2ccd}
}
7 : <CFString 0x10e3aa8 [0x1839b38]>{contents = "NSStoreUUID"} = <CFString 0x8829e60 [0x1839b38]>{contents = "4F2EE7FF-463B-4055-BBED-8E603CDBDF59"}
8 : <CFString 0x10e3948 [0x1839b38]>{contents = "NSStoreType"} = <CFString 0x10e3958 [0x1839b38]>{contents = "SQLite"}
9 : <CFString 0x8829c40 [0x1839b38]>{contents = "NSStoreModelVersionHashesVersion"} = <CFNumber 0x6b1c7c0 [0x1839b38]>{value = +3, type = kCFNumberSInt32Type}
10 : <CFString 0x8829c70 [0x1839b38]>{contents = "_NSAutoVacuumLevel"} = <CFString 0x882a0c0 [0x1839b38]>{contents = "2"}
}
, reason=The model used to open the store is incompatible with the one used to create the store}, {
metadata = {
NSPersistenceFrameworkVersion = 320;
NSStoreModelVersionHashes = {
AlkitabDB = <d02ac5f8 be6ab0b3 9add450a ca202ac0 ebd1e860 cbb578c2 3d45d462 998d2ccd>;
};
NSStoreModelVersionHashesVersion = 3;
NSStoreModelVersionIdentifiers = (
);
NSStoreType = SQLite;
NSStoreUUID = "4F2EE7FF-463B-4055-BBED-8E603CDBDF59";
"_NSAutoVacuumLevel" = 2;
};
reason = "The model used to open the store is incompatible with the one used to create the store";
}
之前我找到了解决方案并发现我应该从模拟器中删除应用程序并重新运行应用程序,但它不起作用。 有谁知道这个问题的解决方案? 请帮忙。
答案 0 :(得分:283)
从模拟器中删除应用程序并对项目执行清理。这应该清除这些问题。删除应用程序时确保没有在调试器中运行,否则它实际上不会正确删除它。
如果您想确定它已消失,请在您正在运行的版本下查看您的应用程序文件夹的Users/INSERT_YOUR_USER_HERE/Library/Application Support/iPhone Simulator/
目录。
注意:这仅用于开发。对于生产,您需要实现某种迁移。谷歌“核心数据迁移”,轻量级迁移是最简单的。
答案 1 :(得分:280)
删除应用有时并非如此!建议,您的应用已经发布了!您不能只是将新实体添加到数据库并继续 - 您需要执行迁移!
对于那些不想深入了解文档并正在寻找快速解决方案的人:
Versioned core data model
下选择当前数据模型的新版数据模型AppDelegate
,找到persistentStoreCoordinator
的创建位置if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error])
nil
选项替换为@{NSMigratePersistentStoresAutomaticallyOption:@YES, NSInferMappingModelAutomaticallyOption:@YES}
(实际在该方法中的注释代码中提供)P.S。这仅适用于轻量级迁移。要使您的迁移符合轻量级迁移的条件,您的更改必须受到限制 到这个狭窄的乐队:
适用于Swift 4
coordinator.addPersistentStore(ofType: NSSQLiteStoreType, configurationName: nil, at: url, options: [NSMigratePersistentStoresAutomaticallyOption: true, NSInferMappingModelAutomaticallyOption: true])
答案 2 :(得分:31)
在AppDelegate.m文件中为核心数据方法创建persistentStoreCoordinator时,只需添加选项属性,如下所示
<强>目的-C 强>
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator
{
if (_persistentStoreCoordinator != nil)
{
return _persistentStoreCoordinator;
}
NSLog(@"persistentStoreCoordinator___");
NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"MyApp.sqlite"];
NSMutableDictionary *options = [[NSMutableDictionary alloc] init];
[options setObject:[NSNumber numberWithBool:YES] forKey:NSMigratePersistentStoresAutomaticallyOption];
[options setObject:[NSNumber numberWithBool:YES] forKey:NSInferMappingModelAutomaticallyOption];
NSError *error = nil;
_persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:options error:&error])
{
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
NSLog(@"persistentStoreCoordinator___2");
return _persistentStoreCoordinator;
}
<强> SWIFT 强>
lazy var persistentStoreCoordinator: NSPersistentStoreCoordinator = {
// The persistent store coordinator for the application. This implementation creates and returns a coordinator, having added the store for the application to it. This property is optional since there are legitimate error conditions that could cause the creation of the store to fail.
// Create the coordinator and store
let coordinator = NSPersistentStoreCoordinator(managedObjectModel: self.managedObjectModel)
let url = self.applicationDocumentsDirectory.URLByAppendingPathComponent("SingleViewCoreData.sqlite")
var failureReason = "There was an error creating or loading the application's saved data."
// MAIN LINE OF CODE TO ADD
let mOptions = [NSMigratePersistentStoresAutomaticallyOption: true,
NSInferMappingModelAutomaticallyOption: true]
do {
try coordinator.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: url, options: mOptions)
} catch {
// Report any error we got.
var dict = [String: AnyObject]()
dict[NSLocalizedDescriptionKey] = "Failed to initialize the application's saved data"
dict[NSLocalizedFailureReasonErrorKey] = failureReason
dict[NSUnderlyingErrorKey] = error as NSError
let wrappedError = NSError(domain: "YOUR_ERROR_DOMAIN", code: 9999, userInfo: dict)
// Replace this with code to handle the error appropriately.
// abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
NSLog("Unresolved error \(wrappedError), \(wrappedError.userInfo)")
abort()
}
return coordinator
}
它解决了我的问题..
答案 3 :(得分:23)
答案:从模拟器中移除应用,执行清理并重新构建项目。
注意:每当您对Core Data定义执行更改时,请删除物理设备或模拟器上安装的应用程序,清理项目并重新构建。
答案 4 :(得分:14)
对于swift,在AppDelegate.swift中找到行
try coordinator!.addPersistentStoreWithType(NSXMLStoreType, configuration: nil, URL: url, options: nil )
并将其替换为
try coordinator!.addPersistentStoreWithType(NSXMLStoreType, configuration: nil, URL: url, options: [NSMigratePersistentStoresAutomaticallyOption: true, NSInferMappingModelAutomaticallyOption: true])
答案 5 :(得分:14)
是。删除物理设备上的应用程序并重建后,它就可以正常工作。
答案 6 :(得分:11)
我花了几天时间来解决这个错误,以及mergedModelFromBundles崩溃,并且获得了“无法将模型与名为*的两个不同实体合并”错误。
事实证明,根本问题是Xcode不会从设备中删除旧资源,而且我的旧版本的数据模型(.mom文件)导致了冲突。这就是删除应用程序修复我的某个设备上的问题的原因。
通过另一个SO回答找到this blog post后,我通过更改查找所有.mom文件的行来让我的应用程序更能容忍旧模型:
NSManagedObjectModel *model = [NSManagedObjectModel mergedModelFromBundles:nil];
到此,它只查看Filters目录:
NSString *path = [[NSBundle mainBundle] pathForResource:@"Filters" ofType:@"momd"];
NSURL *momURL = [NSURL fileURLWithPath:path];
NSManagedObjectModel *model = [[NSManagedObjectModel alloc] initWithContentsOfURL:momURL];
我使用this so question中的 recursivePathsForResourcesOfType :通过记录应用中的所有.mom文件来帮助解决这个问题:
NSArray *momPaths = [self recursivePathsForResourcesOfType:@"mom" inDirectory:[[NSBundle mainBundle] resourcePath]];
NSLog(@"All .mom files:%@",momPaths);
我还使用iExplorer来查看无关的.mom文件(我还没有尝试删除它们)。
以下方法也很有帮助。它表明一个实体在[psc managedObjectModel]返回的合并模型中,在我的任何模型或商店本身中都不再存在。这让我相信一个旧模型被缓存在设备本身上,清洁建筑没有移除。该方法记录每个与模型相同,已更改,或添加到模型或从模型中删除的实体。 (用this SO answer作为起点):
- (BOOL)comparePersistentStore:(NSPersistentStoreCoordinator *)psc withStoreURL: (NSURL *)storeURL {
NSError *error = nil;
// Get the entities & keys from the persistent store coordinator
NSManagedObjectModel *pscModel = [psc managedObjectModel];
NSDictionary *pscEntities = [pscModel entitiesByName];
NSSet *pscKeys = [NSSet setWithArray:[pscEntities allKeys]];
//NSLog(@"psc model:%@", pscModel);
//NSLog(@"psc keys:%@", pscKeys);
NSLog(@"psc contains %d entities", [pscModel.entities count]);
// Get the entity hashes from the storeURL
NSDictionary *storeMetadata = [NSPersistentStoreCoordinator metadataForPersistentStoreOfType:NSSQLiteStoreType
URL:storeURL
error:&error];
NSDictionary *storeHashes = [storeMetadata objectForKey:@"NSStoreModelVersionHashes"];
//NSLog(@"store metadata:%@", sourceMetadata);
NSLog(@"store URL:%@", storeURL);
NSLog(@"store NSStoreUUID:%@", [storeMetadata objectForKey:@"NSStoreUUID"]);
NSLog(@"store NSStoreType:%@", [storeMetadata objectForKey:@"NSStoreType"]);
NSSet *storeKeys = [NSSet setWithArray:[storeHashes allKeys]];
// Determine store entities that were added, removed, and in common (to/with psc)
NSMutableSet *addedEntities = [NSMutableSet setWithSet:pscKeys];
NSMutableSet *removedEntities = [NSMutableSet setWithSet:storeKeys];
NSMutableSet *commonEntities = [NSMutableSet setWithSet:pscKeys];
NSMutableSet *changedEntities = [NSMutableSet new];
[addedEntities minusSet:storeKeys];
[removedEntities minusSet:pscKeys];
[commonEntities minusSet:removedEntities];
[commonEntities minusSet:addedEntities];
// Determine entities that have changed (with different hashes)
[commonEntities enumerateObjectsUsingBlock:^(NSString *key, BOOL *stop) {
NSData *storeHash = [storeHashes objectForKey:key];
NSEntityDescription *pscDescrip = [pscEntities objectForKey:key];
if ( ! [pscDescrip.versionHash isEqualToData:storeHash]) {
if (storeHash != nil && pscDescrip.versionHash != nil) {
[changedEntities addObject:key];
}
}
}];
// Remove changed entities from common list
[commonEntities minusSet:changedEntities];
if ([commonEntities count] > 0) {
NSLog(@"Common entities:");
[commonEntities enumerateObjectsUsingBlock:^(NSString *key, BOOL *stop) {
NSData *storeHash = [storeHashes objectForKey:key];
NSEntityDescription *pscDescrip = [pscEntities objectForKey:key];
NSLog(@"\t%@:\t%@", key, pscDescrip.versionHash);
}];
}
if ([changedEntities count] > 0) {
NSLog(@"Changed entities:");
[changedEntities enumerateObjectsUsingBlock:^(NSString *key, BOOL *stop) {
NSData *storeHash = [storeHashes objectForKey:key];
NSEntityDescription *pscDescrip = [pscEntities objectForKey:key];
NSLog(@"\tpsc %@:\t%@", key, pscDescrip.versionHash);
NSLog(@"\tstore %@:\t%@", key, storeHash);
}];
}
if ([addedEntities count] > 0) {
NSLog(@"Added entities to psc model (not in store):");
[addedEntities enumerateObjectsUsingBlock:^(NSString *key, BOOL *stop) {
NSEntityDescription *pscDescrip = [pscEntities objectForKey:key];
NSLog(@"\t%@:\t%@", key, pscDescrip.versionHash);
}];
}
if ([removedEntities count] > 0) {
NSLog(@"Removed entities from psc model (exist in store):");
[removedEntities enumerateObjectsUsingBlock:^(NSString *key, BOOL *stop) {
NSData *storeHash = [storeHashes objectForKey:key];
NSLog(@"\t%@:\t%@", key, storeHash);
}];
}
BOOL pscCompatibile = [pscModel isConfiguration:nil compatibleWithStoreMetadata:storeMetadata];
NSLog(@"Migration needed? %@", pscCompatibile?@"no":@"yes");
return pscCompatibile;
}
用法:在将每个商店添加到NSPersistentStoreCoordinator之前调用:
[self comparePersistentStore:self.psc withStoreURL:self.iCloudStoreURL];
_iCloudStore = [self.psc addPersistentStoreWithType:NSSQLiteStoreType
configuration:nil
URL:self.iCloudStoreURL
options:options
error:&localError];
答案 7 :(得分:10)
每次更改核心日期定义时,都应删除物理设备或模拟器上安装的应用程序。
答案 8 :(得分:9)
Product
- &gt; Clean
答案 9 :(得分:7)
在Swift 2.1,Xcode 7中对我有用的最简单的解决方案是:
从模拟器中删除应用程序(Cmd + Shift + H进入主屏幕。长按应用程序,点击交叉,按照通常的方式从手机中删除应用程序)
< / LI>Cmd + Shift + H再次停止应用程序的跳舞
返回您的项目并重新运行
我在设置2个实体时从Core Data写入/读取时遇到此问题。删除应用程序并重新运行程序修复了问题
答案 10 :(得分:6)
如果您使用的是Swift。
按照@Stas的回答,在App Delegate中插入选项代替nil:
let myOptions = [NSMigratePersistentStoresAutomaticallyOption: true,
NSInferMappingModelAutomaticallyOption: true]
if coordinator!.addPersistentStoreWithType(NSSQLiteStoreType, configuration: nil, URL: url, options: myOptions, error: &error) == nil {
答案 11 :(得分:6)
我刚刚在实体中进行了更改后删除了[Simulator App Folder]/Document/*.sqlite
文件并且有效。
当然,.sqlite文件包含将丢失的所有存储数据和结构。
答案 12 :(得分:6)
请从模拟器中删除一个应用程序并清理代码并运行。工作正常。它可能对您有所帮助。
答案 13 :(得分:5)
在模拟器中尝试“重置内容和设置”。删除应用程序和清理构建后,为我工作
答案 14 :(得分:4)
我的应用程序遇到了同样的问题(尚未在App Store中发布)。
以下是我修复它的方法:
(3)是最终让它正常运行的步骤。希望这有帮助!
答案 15 :(得分:2)
您需要使用迁移迁移Core Data模型。每次更改模型时,都会使其不兼容而不进行版本控制。自我介绍,这是一个毛茸茸的话题。
答案 16 :(得分:2)
如果您对Core Data模型进行了更改,则必须提供一个迁移策略,告知Core Data如何将现有的持久对象(用户使用当前发布的版本创建的对象)采用到新模型。
对于某些情况,Core Data能够自动推断从旧模型到新模型的映射。对于更复杂的更改,您可能必须实现一些执行迁移的逻辑。
详情可在Core Data Model Versioning and Data Migration Programming Guide。
中找到 <强>更新强>
This answer here on Stack Overflow涵盖了Core Data轻量级迁移的基础知识,还有一些代码可以帮助您入门。
答案 17 :(得分:2)
虽然有时您可以在更改托管对象模型中的架构时从设备中删除应用程序,但在某些情况下,这是不可能的,例如因为您已经使用旧架构发布了应用程序。
如果是这种情况,则必须注意将旧数据迁移到新架构:
答案 18 :(得分:1)
首先,xcdatamodeld
捆绑包中应该包含的唯一内容是xcdatamodel
个文件。您的子类应 NOT 在xcdatamodeld
中。将那些移出那里。他们很可能会混淆编译器。
其次,错误表明Core Data无法找到您的模型。您是否创建了数据然后触摸了模型?如果是这样,您处于不一致的状态,需要通过删除数据(Philippe建议)或滚动您对模型的更改 BACK 来解决这个问题。
答案 19 :(得分:1)
由于创建了数据库的版本之间的不兼容,通常会发生此问题。解决此问题的一般方法是删除应用并重新安装。但在你提到的情况下,数据库的版本在Xcode 3.2和4.2上完全不同。因此,最好使用相同版本的Xcode for DB。
答案 20 :(得分:0)
当您更改核心数据(向表中添加字段,删除字段等)时,应用程序文档文件夹中的sqlite文件需要与您的架构同步。
默认情况下不会覆盖此文件,需要重新生成此文件。
请按照以下步骤操作:
转到NSURL指向的文件夹。 (此路径可在崩溃前由应用程序生成的异常消息中找到。) 示例:/ Users // Library / Application Support / iPhone Simulator // Applications // Documents
删除或重命名sqlite文件
这将确保架构和Xcode同步。
答案 21 :(得分:0)
我有这个问题 - 我首先重置我的模拟器,然后清理项目并重建。然后就行了。
答案 22 :(得分:0)
我收到了错误,但我收到错误的原因是由于以下原因。
我最初有一个名为“Entry”的实体,并为数据库中的该实体保存了一行。然后我添加了另一个名为“Person”的实体,并在添加之后进行构建并获得错误。所以我通过删除“Person”实体然后构建应用程序解决了这个问题,删除了“Entry”中的行,然后关闭了应用程序。然后我完全从我的手机上删除了应用程序然后进行了重建,它工作正常。不确定哪一步纠正了问题(删除行或应用程序),但希望如果您正在寻找解决方案,这将有所帮助。 :)
编辑:哦,如果你担心删除你的新实体(在我的情况下是“人”)再次构建应用程序,请记住你以后可以通过使用CMD + Z来恢复它!
答案 23 :(得分:0)
就我而言,我有两个持久存储,一个用于用户特定数据的本地存储,一个用于与 iCloud 自动同步的通用数据的 CoreData+CloudKit 存储。因此数据模型有两种配置,实体根据需要分配给两种配置。
由于开发过程中的错误,我尝试存储不再分配给任何配置的实体。所以在保存context的时候,CoreData意识到不兼容,崩溃了这个错误。
当然,在这种情况下,删除应用程序无济于事。必须确保只有分配的实体存储在持久存储中。
答案 24 :(得分:-1)
对于mac app开发:
它对我有用,希望这可能有所帮助。
答案 25 :(得分:-2)
iOS模拟器 - &gt;重置内容和设置...
为我工作
iOS模拟器 - &gt;重置内容和设置... - &gt;重启 适用于iOS9(xcode 7.1)