Переход с MKLocalSearch на MKLocalSearchCompleter
Я следовал руководству по настройке MKLocalSearchResponse, но вместо этого я хочу использовать MKLocalSearchCompleter в своем коде. Я нашел подобную проблему здесь, но я не могу перевести это в мой код.
Я хочу сделать это, потому что я хочу больше результатов, когда клиент ищет адрес или подобное.
Может ли кто-нибудь дать мне некоторое представление или советы по моей проблеме? Это может быть очень просто, но я пытался безуспешно.
class LocationSearchTable: UITableViewController {
weak var handleMapSearchDelegate: HandleMapSearch?
var matchingItems: [MKMapItem] = []
var mapView: MKMapView?
var localSearchResponse: MKLocalSearchResponse!
}
extension LocationSearchTable : UISearchResultsUpdating {
func updateSearchResults(for searchController: UISearchController) {
guard let mapView = mapView,
let searchBarText = searchController.searchBar.text else { return }
let request = MKLocalSearchRequest()
request.naturalLanguageQuery = searchBarText
request.region = mapView.region
let search = MKLocalSearch(request: request)
search.start { localSearchResponse, _ in
guard let response = localSearchResponse else {
return
}
self.matchingItems = response.mapItems
self.tableView.reloadData()
}
}
}
extension LocationSearchTable {
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return matchingItems.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell")!
let selectedItem = matchingItems[(indexPath as NSIndexPath).row].placemark
cell.textLabel?.text = selectedItem.name
cell.detailTextLabel?.text = parseAddress(selectedItem)
return cell
}
}
extension LocationSearchTable {
override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let selectedItem = matchingItems[(indexPath as NSIndexPath).row].placemark
handleMapSearchDelegate?.dropPinZoomIn(selectedItem)
dismiss(animated: true, completion: nil)
}
}
Спасибо за любую помощь для меня!