4

我正在开发一个应用程序,用户可以在其中搜索兴趣点,选择搜索结果,然后 MKMapView 将以结果坐标为中心。

我的问题是如何使自动完成发生?MKLocalSearch我对and进行了研究 MKLocalSearchRequest,这似乎是 Apple 建议的用于在 iOS6.1+ 上进行位置搜索的 API。但是,我找不到任何带有自动补全功能的示例或带有MKLocalSearch和的建议MKLocalSearchRequest。是否可以像 Apple 的地图应用程序一样自动完成位置搜索或显示建议列表?谢谢!

4

1 回答 1

7

检查这篇文章:https ://stackoverflow.com/a/20141677/1464327

基本上,您可以提出多个请求。例如,当用户键入时,启动一个计时器,当计时器完成时,发出请求。每当用户键入时,取消前一个计时器。

文本字段委托的实现textField:shouldChangeCharactersInRange:replacementString:

static NSTimer *_timer = nil;
[_timer invalidate];
_timer = [NSTimer timerWithTimeInterval:1.5 target:self selector:@selector(_search:) userInfo:nil repeats:NO];

然后实现 _search 方法来发出请求。

MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init];
request.region = regionToSearchIn;
request.naturalLanguageQuery = self.textField.text;
MKLocalSearch *localSearch = [[MKLocalSearch alloc] initWithRequest:request];
[localSearch startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error) {
    // check for error and process the response
}];

我从来没有实施过这样的事情。我只是说我的出发点是什么。希望这会给你一些方向。

于 2014-05-07T17:31:13.943 回答