我想知道请求的外观或使用哪个类来获取结果,例如使用 Apple Maps 进行搜索?我试过了:
[geocoder geocodeAddressString:text
completionHandler:^(NSArray *placemarks, NSError *error)
那似乎只回馈一个结果。
MKLocalSearch *search = [[MKLocalSearch alloc] initWithRequest:request];
[search startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error)
像当地商店等一样回馈。
如果您键入几个字母并返回 10 个最匹配的城市,我如何才能获得结果?