iOS9 适配
PS:设备的iOS版本只能使用对应版本的Xcode,比如,设备运行的iOS版本为9.2,则只能使用Xcode 7.2 进行真机测试。
真机测试以及最终上线 必须 在iOS9 设备上进行测试完毕后才能提交。
iOS9访问http协议的URL需要修改
有两种修改方式:
方法一:你可以在Info.plist 配置中添加或者修改XML源码:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
方法二:在 info.plist 文件中配置显示如下:
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,Xcode7 及以上版本会默认开启 bitcode 。
关闭方法见下图:
网友评论