有谁知道为什么将捆绑显示名称从更改${PRODUCT_NAME}
为Application
引发以下 CoreData 错误?
Failed to create file; code = 2
我的xcdatamodeld
名称完全相同(此外,商店 URL 具有此名称。Application
${PRODUCT_NAME}
@"Application.sqlite"
我正在 Info.plist 文件下更改这些值。
编辑
错误在以下行
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator
{
if (__persistentStoreCoordinator != nil) {
return __persistentStoreCoordinator;
}
// This line produces the error
NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"Beezer.sqlite"];
...
}