最近百度地图的SDK更新了,为了兼容IOS 9 ,不得不做更新。
下载SDK后发现,原来的静态库.a木有了。现在是framework,而且做了真机和模拟器两个,显然需要我们将两个framework合并成一个。
framework不能直接合并,也不需要,只要我们合并目录下面的BaiduMapAPI就可以了。方法跟合并.a是一样的。
-》打开终端
-》输入
lipo -create Release-iphoneos/BaiduMapAPI.framework/BaiduMapAPI Release-iphonesimulator/BaiduMapAPI.framework/BaiduMapAPI -output Release-iphoneos/BaiduMapAPI.framework/BaiduMapAPI
即 lipo -create 真机framework路径 模拟器framework路径 -output 通用framework路径
就可以将两个BaiduMapAPI合成通用并输出到所给路径。
如果在终端中输入上述命令行后遇到如下错误:
crun: error: active developer path (“/Applications/Xcode 2.app/Contents/Developer”) does not exist, use xcode-select --switch path/to/Xcode.app to specify the Xcode that you wish to use for command line developer tools (or see man xcode-select)
可以输入
sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
之后输入密码 ,再执行上面的合并就可以了
??tips:??
正常编译后
1.如果出现manager start failed!,可以根据错误提示进行处理,一般是需要在info.plist中加入displayname
2.出现引擎初始化失败,需要在工程中添加BaiduMapAPI.framework/Resources/mapapi.bundle
??
时间: 2024-10-27 05:17:48