一.报错与警报 1.错误代码:No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=armv7 armv7s) build 这个target的时候命令行报错.可以在 build setting 中,搜索bitcode,并吧 enable bitcode 设置为 NO. 2.ld:framework not found IOKit 终端输入以下2行内容: cd/Applicati…
本文转载自  IOS开发xcode报错之has been modified since the precompiled header was built 其实我是升级xcode到4.6.3的时候遇到的一个也是has been modified since the precompiled header was built的问题,看一下 是clean一下就好了 今天做百度地图的时候第一次发现下面错误: 问题:Apple LLVM compiler 3.0 error file "BMKPointAn…
转载的文章  很实用 IOS开发xcode报错之has been modified since the precompiled header was built 今天做百度地图的时候第一次发现下面错误: 问题:Apple LLVM compiler 3.0 error file "BMKPointAnnotation.h" has been modified since the precompiled header was built (原因:预编译头的时候文件被修改): 解决方法:1…
真机运行没问题,打包报错: clang: error: linker command failed with exit code 1 (use -v to see invocation) 原因:在Xcode 7中,我们新建一个iOS程序时,bitcode选项默认是设置为YES的.我们可以在”Build Settings”->”Enable Bitcode”选项中看到这个设置.不过,我们现在需要考虑的是三个平台:iOS,Mac OS,watchOS.对于iOS,bitcode是可选的:对于watc…
1.xcode7报错:does not contain bitcode 解决方法:Build Settings 搜索 bitcode  将Enable Bitcode更改为NO即可 2.Code Sign error: No code signing identites found: No valid signing identities (i.e. certificate and private key pair) matching the team ID “E6F3H8ENQM” were …
1.invalid new-expression of abstract class type ‘×××ב 这个报错代表一个尝试在实例化一个抽象类,也就是说父类的接口中有纯虚函数在子类中没有实现: 举例: //父类 class parent: { virtual ~parent(); ; }; //子类 class child: public parent { child(); ~child(); }; int main() { parent *test = new child(); }; 这…
最近做iOS开发,老是遇到这种问题,正好我有两个版本的Xcode,换了另一个,就正常了,所以也一直没解决. 今天又遇到这个问题,就查了一下资料,找到了解决办法,在次记录一下方便查找,就是在Xcode中把项目clean一下,就正常了. 目录在Xcode的product------>clean.…
1. 编译出现错误:linker command failed with exit code 1 第一种方法:找到Build settings->Linking->Other Linker Flags,把Other Linker Flags下的属性全删除…
如果新创建报错:编译报错VM1781:2 pages/module/module.json 文件解析错误  SyntaxError: Unexpected end of JSON input 解决方法: 在JSON文件中添加 即可解决 { }…
问题一 编译报错 Showing Recent Messages :-1: Multiple commands produce '/Users/duning/Library/Developer/Xcode/DerivedData/XGB-bvlwqwfpzltpeyarupiguxtqzrdn/Build/Products/Debug-iphonesimulator/XGB.app/README.txt': 解决办法 File > Workspace Settings > Build Syst…