Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/neo4j/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Objective c xcode5:Apple LLVM 5.1生成时出错_Objective C_Xcode5 - Fatal编程技术网

Objective c xcode5:Apple LLVM 5.1生成时出错

Objective c xcode5:Apple LLVM 5.1生成时出错,objective-c,xcode5,Objective C,Xcode5,如果我在iOS模拟器上运行我的应用程序,会出现以下错误: fatal error: file '/Users/Patti/Desktop/Picxxr/Picxxr/Picxxr-Prefix.pch' has been modified since the precompiled header '/Users/Patti/Library/Developer/Xcode/DerivedData/Picxxr-gcakojkodoomqcertyparosqruxs/Build/Intermedi

如果我在iOS模拟器上运行我的应用程序,会出现以下错误:

fatal error: file '/Users/Patti/Desktop/Picxxr/Picxxr/Picxxr-Prefix.pch' has been modified since the precompiled header '/Users/Patti/Library/Developer/Xcode/DerivedData/Picxxr-gcakojkodoomqcertyparosqruxs/Build/Intermediates/PrecompiledHeaders/Picxxr-Prefix-dpxcuqgwybsqepgyjnhyqvzeyjhk/Picxxr-Prefix.pch.pch' was built

有人知道原因吗?

您以某种方式更改了预编译头文件。此文件列出了要包含在项目中所有文件中的全局
#导入
#定义
s-通常用于导入
UIKit
Foundation
,但您可以添加其他内容。由于这会使项目中的所有文件过期,这意味着您需要清理派生数据文件夹(选项Apple+Shift->K),然后重新生成项目-这将重新生成整个项目,并应能解决此问题。

您以某种方式更改了预编译的头文件。此文件列出了要包含在项目中所有文件中的全局
#导入
#定义
s-通常用于导入
UIKit
Foundation
,但您可以添加其他内容。由于这会使项目中的所有文件过期,这意味着您需要清理派生数据文件夹(选项Apple+Shift->K),然后重新生成项目-这将重新生成整个项目,并应解决问题。

建议不适用于您吗?建议不适用于您吗?非常感谢!这很有帮助。非常感谢!这很有帮助。