Build finished with errors/Executable Not Found

项目场景:

iOS工程,点击运行,或者点击编译


问题描述:

能运行起来,但是报错,报错内容如下图

请添加图片描述

报了build finished with errors的错误,但是具体原因却没有提示。


原因分析:

编译的错误,但是工程却能运行起来,就很奇怪。 报错之前做过一次合并代码的操作,直接推测是工程配置或者文件引入的问题,在Build Phases中->Copy Bundle Resources查找后果然发现有重复项,是合并后解决冲突留下的。文件引入重复了,重复的文件找不到路径。

解决方案:

,在Build Phases中->Compile Resources中找到重复的文件删除了,也可以把有问题的文件全部删除后重新引入。

Build finished with errors/Executable Not Found_第1张图片

补充

在stack上有此问题,可能是有其他原因导致产生。
过几天又遇到类似的错误,报错内容如下:

/xxx.app is not a valid path to an executable file. Please rebuild the project to ensure that all required executables are created. Check your project settings to ensure that a valid executable will be built.

Build finished with errors/Executable Not Found_第2张图片

你可能感兴趣的:(iOS,遇到的问题,objective-c)