升级Xcode10之后 使用百度地图定位时会报:BaiduMapAPI_Location/BMKLocationComponent.h' file not found。
原因是:百度地图把定位功能划分到另外一个第三方库BMKLocationKit里面去了,新的BaiduMapKit库里面没有location项了,因此需要集成BMKLocationkit框架
但是,使用BMKLocationkit 需要集成系统的AdSupport.framework,不然编译会报“_OBJC_CLASS_$_ASIdentifierManager”, referenced from: objc-class-ref in
但是,如果使用了AdSupport.framework,上传APP时 回报广告标识符 (IDFA) 问题
所以,在集成BMKLocationkit时,需要在百度下载不包含IDFA的版本
这样就不用添加系统的AdSupport.framework了