美文网首页
iOS打包32 64位ipa(随记)

iOS打包32 64位ipa(随记)

作者: 砖加 | 来源:发表于2017-12-19 09:28 被阅读0次

    关于Build Active Architecture Only属性

            时候编译速度更快,它只编译当前的architecture版本。 而设置为no时,会编译所有的版本。 这个是设备对应的architecture: armv6:iPhone 2G/3G,iPod 1G/2G armv7:iPhone 3GS/4/4s,iPod 3G/4G,iPad 1G/2G/3G armv7s:iPhone5, iPod5 编译出的版本是向下兼容的,比如你设置此值为yes,用iphone4编译出来的是armv7版本的,iphone5也可以运行,但是armv6的设备就不能运行。   所以,一般debug的时候可以选择设置为yes,release的时候要改为no,以适应不同设备。

          在xcode9上设为yes只会编译64位版本的ipa,如果需要兼容32位系统,需要打release的时候设置为no

    相关文章

      网友评论

          本文标题:iOS打包32 64位ipa(随记)

          本文链接:https://www.haomeiwen.com/subject/gyfbwxtx.html