Xcode8.1 創建coreData的ManagedObject后,報錯

使用Xcode 8.1 創建coreData的ManagedObject后,報錯。
duplicate symbol OBJC_CLASS$_ClassName in:
.../ClassName+CoreDataClass.o
duplicate symbol OBJC_METACLASS$_ClassName in:
.../ClassName+CoreDataClass.o
ld: 2 duplicate symbols for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
解決方法為,將

05B2DE4F-28F6-4C31-A1CB-1EA21FFA8A9A.png

然后修改ClassName+CoreDataClass.h和ClassName+CoreDataClass.m為ClassName.h和ClassName.m。
注意在ClassName+CoreDataProperties.h中系統給你創建的引用也要記得修改。
備注:下面為三種Codegen的區別,來自XCode 8 generates broken NSManagedObject subclasses for iOS 10
Option 1: "Class Definition"
Think of this as the "plug and play" option
Use the model editor to create the entities and associated attributes that you want Core Data to manage.
Do not use the NSMangagedObject subclass generator. The required files are automatically generated for you by Xcode (however they do not show up in your project navigator).
If you do generate the NSManagedObject files, Apple tells you that these files should not be edited in the header comments of said files. If you do need to edit these files, then this is good sign that you need to use another Codegen option.
Leave the default Class options for your entity (Module = Global Namespace and Codegen = Class Definition)
If you need to override methods of the NSManagedObject, you can create an extension using the Name under the Class option.
// Optional extension in Entity.swiftextension Entity { // Override NSManagedObject methods }

Options 2: "Manual/None"
Similar to Option 1, except that you can see and edit the NSManagedObject subclass files.
Use the model editor to create the entities and associated attributes that you want Core Data to manage.
Before using the NSManagedObject subclass generator, set the Codgen option to "Manual/None" for the entity. The Module option should be Global Namespace.
After you add/remove/update an attribute, you have two choices: (1) Manually update the NSManagedObject files that were generated for you OR (2) Use the NSManagedObject subclass generator again (this will only update the Entity+CoreDataProperties.swift file).
Again, if you need to override and methods from NSManagedObject, you can create an extension. The extension should be created in the Entity+CoreDataClass.swift file and not the Entity+CoreDataProperties.swift file (this file could be updated due to model editor changes).
// Optional extension in Entity+CoreDataClass.swiftextension Entity { // Override NSManagedObject methods }

Option 3: "Category/Extension"
Use this option if you have custom properties that do not need to be managed by Core Data.
Use the model editor to create the entities and associated attributes that you want Core Data to manage.
Ensure the Module option is set to Current Product Module and the Codegen option is set to "Category/Extension".
Create your own NSManagedObject subclass with the properties that you will self manage.
Do not use the NSMangagedObject subclass generator. The required files are automatically generated for you by Xcode (however they do not show up in your project navigator).
// Subclass NSManagedObject in Entity.swiftclass Entity: NSManagedObject { // Self managed properties }
// Optional extension in Entity.swiftextension Entity { // Override NSManagedObject methods }

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容