Xcode 8 Core Data 生成代码 编译错误

错误描述

今天在Xcode 8下使用Core Data时,编译时出现以下错误:

:0: error: filename "Friend+CoreDataClass.swift" used twice: '/Users/.../Documents/Demo/Friend/Friend/Friend+CoreDataClass.swift' and '/Users/.../Library/Developer/Xcode/DerivedData/Friend-adfqrgytnrhhxnavbipcabnyztke/Build/Intermediates/Friend.build/Debug-iphonesimulator/Friend.build/DerivedSources/CoreDataGenerated/Friend/Friend+CoreDataClass.swift'
:0: note: filenames are used to distinguish private declarations with the same name
:0: error: filename "Friend+CoreDataProperties.swift" used twice: '/Users/.../Documents/Demo/Friend/Friend/Friend+CoreDataProperties.swift' and '/Users/.../Library/Developer/Xcode/DerivedData/Friend-adfqrgytnrhhxnavbipcabnyztke/Build/Intermediates/Friend.build/Debug-iphonesimulator/Friend.build/DerivedSources/CoreDataGenerated/Friend/Friend+CoreDataProperties.swift'
:0: note: filenames are used to distinguish private declarations with the same name
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 1

仔细看下上面的报错,发现是文件名冲突。Friend+CoreDataClass.swift 和 Friend+CoreDataProperties.swift 同时出现在两个路径下:

/Users/.../Documents/Demo/Friend/Friend/
/Users/.../Library/Developer/Xcode/DerivedData/Friend-adfqrgytnrhhxnavbipcabnyztke/Build/Intermediates/Friend.build/Debug-iphonesimulator/Friend.build/DerivedSources/CoreDataGenerated/Friend/

产生原因

Xcode 8中实体新添了一个Codegen选项,而其默认值是'Class Definition',表示自动为实体生成对应类文件(上面较长路径下的文件)。

Xcode 8 Core Data 生成代码 编译错误_第1张图片
自动生成类文件.png

而我又用使用Editor->Create NSManagedObject Subclass手动为实体生成了类文件(上面较短路径下的文件)。所以导致了文件重名。

解决方案

方案一:删掉手动生成的类文件,直接使用自动生成的。
方案二:如果不想用系统自动生成的,我们可以将Codegen选项改为'Manual/None'。表示手动生成。

Xcode 8 Core Data 生成代码 编译错误_第2张图片
手动生成类文件.png

注意,使用方案二需要删除已经自动生成的文件(上面较长路径下的文件)。如果还是报错,使用Product -> Clean清理下试试。

你可能感兴趣的:(Xcode 8 Core Data 生成代码 编译错误)