昨天我升级到了Xcode 7,我从Xcode那里得到了一堆错误。该程序编译/运行正常,但编程时会说No known class method for selector...
,Use of undeclared identifier
,No visible @interface for...
或Receiver type '...' for instance message is a forward declaration
。
我认为所有这些错误都会出现,因为它没有使用我的预编译头文件(*.pch
),其中包含了解这些类所需的文件。
如何告诉Xcode查看预编译的头文件?
我只使用Objective-C。