简体   繁体   English

MapKit 本地搜索结果填充表格

[英]MapKit local search results populate the table

I am trying to load the updated search results but it doesn't populate the table view.我正在尝试加载更新的搜索结果,但它没有填充表格视图。 I used this link https://www.thorntech.com/how-to-search-for-location-using-apples-mapkit/ which belongs to the previous versions but it still works very well except showing the local search results.我使用了这个链接https://www.thorntech.com/how-to-search-for-location-using-apples-mapkit/它属于以前的版本,但除了显示本地搜索结果外,它仍然很好用。 Please help请帮忙

class LocationSearchTable : UITableViewController, UISearchResultsUpdating {
    var matchingItems:[MKMapItem] = []
    var mapView: MKMapView? = nil
    
}

extension LocationSearchTable {
func updateSearchResults(for searchController: UISearchController) {
    guard let MapView = mapView,
        let searchBarText = searchController.searchBar.text else { return }
    let request = MKLocalSearch.Request()
    request.naturalLanguageQuery = searchBarText
    request.region = MapView.region
    let search = MKLocalSearch(request: request)
    search.start { response, _ in
        guard let response = response else {
            print("No response")
            return
        }
        self.matchingItems = response.mapItems
        self.tableView.reloadData()
    }
    }
}
extension LocationSearchTable {
    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return matchingItems.count
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell")!
        let selectedItem = matchingItems[indexPath.row].placemark
        cell.textLabel?.text = selectedItem.name
        cell.detailTextLabel?.text = ""
        return cell
    }
}
 //use IndexPath rather than NSIndexPath and you need to use 
 //override

override func tableView(_ tableView: UITableView, 
     cellForRowAtIndexPath 
     indexPath: IndexPath) -> UITableViewCell {
  let cell =tableView.dequeueReusableCell(withIdentifier:"cell")!
    let selectedItem = matchingItems[indexPath.row].placemark
    cell.textLabel?.text = selectedItem.name
    cell.detailTextLabel?.text = ""
    return cell
}

Hope it is not too late to answer you!希望现在回答你还为时不晚!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM