iOS报错:does not contain bitcode

错误信息:does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64

Bitcode:

When you archive for submission to the App Store, Xcode will compile your app into an intermediate

e representation. The App Store will then compile the bitcode down into the 64 or 32 bit executables as 

necessary.

当我们提交程序到App store上时,Xcode会将程序编译为一个中间表现形式(bitcode)。然后App store会再将这个

bitcode编译为可执行的64位或32位程序。


在上面的错误提示中,提到了如何处理我们遇到的问题:

You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from 

the vendor, or disable bitcode for this target. for architecture arm64

要么让第三方库支持,要么关闭target的bitcode选项。

实际上在Xcode 7中,我们新建一个iOS程序时,bitcode选项默认是设置为YES的。我们可以在”Build Settings”->

“Enable Bitcode”选项中看到这个设置


你可能感兴趣的:(iOS报错集锦)