如何使用MKLocalSearch在MKMap中搜索地址

时间:2014-12-06 14:54:29

标签: search mkmapview uisearchdisplaycontroller mklocalsearch

我试图使用MKLocalSearch搜索地址,但它只是提供商业而不是确切地址,例如地图(Apple' s App)。

我希望你们能帮助我 - 谢谢! :)

MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init];
request.naturalLanguageQuery = query;
request.region = self.mapView.region;

[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
self.localSearch = [[MKLocalSearch alloc] initWithRequest:request];

[self.localSearch startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error){

    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

    if (error != nil) {
        [[[UIAlertView alloc] initWithTitle:@"Map Error"
                                    message:[error description]
                                   delegate:nil
                          cancelButtonTitle:@"OK"
                          otherButtonTitles:nil] show];
        return;
    }

    self.results = response;

`

1 个答案:

答案 0 :(得分:0)

在结果数组中,类型为MKMapItem,您需要配置单元格,以便在tableView呈现时为您提供地址。这是一个简单的例子。

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let IDENTIFIER = "CellID"
    let cell = tableView.dequeueReusableCellWithIdentifier(IDENTIFIER, forIndexPath: indexPath) as! UITableViewCell

    // Configure the cell...
    var item: MKMapItem = results[indexPath.row]

    cell.textLabel?.text = item.placemark.name
    cell.detailTextLabel?.text = item.placemark.addressDictionary["Street"] as? String

    return cell
}

这都是在属于UITableViewDataSource协议的cellForRowAtIndexPath方法中完成的。

希望对您有所帮助,祝您好运!