我使用MagicalRecord在我的项目中添加了CoreData,但它在这个方法上崩溃了:
+(NSString *) MR_entityName {
NSString *entityName;
if ([self respondsToSelector:@selector(entityName)])
{
entityName = [self performSelector:@selector(entityName)];
}
if ([entityName length] == 0)
{
// Remove module prefix from Swift subclasses
entityName = [NSStringFromClass(self) componentsSeparatedByString:@"."].lastObject;
}
return entityName;
}
在第一个if上,在控制台中我的entityName是nil。 有人能帮帮我吗? @Edit:我添加了一些代码,这就是我现在在控制台中所拥有的:
TestCoreData[483:6632] CoreData: error: -addPersistentStoreWithType:SQLite configuration:(null) URL:file:///Users/macbookpro/Library/Developer/CoreSimulator/Devices/0E01E4C3-42E3-44A1-BE57-2A535715EE03/data/Containers/Data/Application/586065AE-FF44-4396-8999-9E06391595F6/Documents/ options:(null) ... returned error Error Domain=NSCocoaErrorDomain Code=256 "The operation couldn’t be completed. (Cocoa error 256.)" UserInfo=0x7be94450 {NSUnderlyingException=unable to open database file, NSSQLiteErrorDomain=14} with userInfo dictionary {
NSSQLiteErrorDomain = 14;
NSUnderlyingException = "unable to open database file";
}
答案 0 :(得分:0)
该错误发生得更早,而不是在此方法期间发生,但是当它发生时您忽略了错误,因此您将在以后崩溃。
该错误专门描述了调用addPersistentStoreWithType:configuration:URL:options:error:
时遇到的问题,这是NSPersistentStoreCoordinator
上的方法。遗憾的是,Cocoa error 256
部分含糊不清,但NSSQLiteErrorDomain
指出您的持久存储文件存在问题。
出现此问题是因为您传入的URL指向应用程序的文档目录。您需要将路径传递给文件名。该文件尚不存在,如果需要,将创建该文件。但它必须是文件的路径,因为Core Data不会为您构成文件名。
这意味着您传递了[self applicationDocumentsDirectory]
之类的内容作为网址。它必须是该目录中的文件,例如[[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"MyPersistentStore.sqlite"]
。