高德地图SDK-AMapSearchDelegate没有回调问题

  • (void)onReGeocodeSearchDone:(AMapReGeocodeSearchRequest *)request response:(AMapReGeocodeSearchResponse *)response;
    没有回调问题排除

AMapSearch确保已经实例化

[[AMapSearchAPI alloc] init];

[AMapServices sharedServices].apiKey = @"apikey"; 是否设置

使用- (void)AMapSearchRequest:(id)request didFailWithError:(NSError *)error;协议,

检查下是否高德地图官网上填写的Bundle Id 和 Xcode 中设置的 Bundle ID 不一致, 改成一致就可以了。

更新'AMapSearch' SDK

pod 'AMapSearch', '~> 6.9.0'
或者 更新本地AMapSearch库:pod update AMapSearch 确定AMapSearch更新到 6.9.0
我在6.1.0升级到6.9.0完美解决

你可能感兴趣的:(高德地图SDK-AMapSearchDelegate没有回调问题)