MapKit SearchResultsUpdating未调用

问题描述 投票:0回答:1

有人可以查看我的代码吗?我正在尝试使用MapKit来获取本地搜索结果。我用过这个教程:https://www.thorntech.com/2016/01/how-to-search-for-location-using-apples-mapkit/

与教程和我正在做的不同之处在于我不想显示mapView。我只想点击按钮,一个searchController启动,允许我搜索位置。我遇到的问题是没有调用SearchResultsUpdating。对不起长代码,这是我第一次使用MapKit本地搜索,我不知道我错过了什么。

*编辑它是固定的。附上修改后的代码。

import UIKit
import MapKit
import CoreLocation

class LocationSearchTable: UITableViewController {
let cellId = "cellId"
var searchController = UISearchController(searchResultsController: nil)

var matchingItems: [MKMapItem] = []
let mapView = MKMapView()
let locationManager = CLLocationManager()

override func viewDidLoad() {
    super.viewDidLoad()

    setupLocationManager()
    setupSearchBar()
    setupMapView()

    tableView.delegate = self
    tableView.dataSource = self
    tableView.register(UITableViewCell.self, forCellReuseIdentifier: cellId)
    navigationController?.isNavigationBarHidden = false
    navigationItem.hidesSearchBarWhenScrolling = false
}

fileprivate func setupLocationManager() {
    locationManager.delegate = self
    locationManager.desiredAccuracy = kCLLocationAccuracyBest
    locationManager.requestWhenInUseAuthorization()
    locationManager.requestLocation()
}

fileprivate func setupSearchBar() {
    let searchBar = searchController.searchBar
    searchBar.placeholder = "Enter Location"
    navigationItem.searchController = searchController
    searchController.searchResultsUpdater = self
    definesPresentationContext = true
}

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

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return matchingItems.count
}
}

extension LocationSearchTable: CLLocationManagerDelegate {
func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) {
    if status == .authorizedWhenInUse {
        locationManager.requestLocation()
    }
}

func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
    if let location = locations.first {
        let span = MKCoordinateSpan(latitudeDelta: 0.05, longitudeDelta: 0.05)
        let region = MKCoordinateRegion(center: location.coordinate, span: span)
        mapView.setRegion(region, animated: true)
        print("location: \(location)")
    }
}

func locationManager(_ manager: CLLocationManager, didFailWithError error: Error) {
    print(error)
}
}

extension LocationSearchTable: UISearchResultsUpdating {
func updateSearchResults(for searchController: UISearchController) {
    if let searchText = searchController.searchBar.text {
        let request = MKLocalSearch.Request()
        request.naturalLanguageQuery = searchText
        request.region = mapView.region

        let search = MKLocalSearch(request: request)
        search.start { (response, _) in
            guard let response = response else { return }
            self.matchingItems = response.mapItems
            self.tableView.reloadData()
        }
    }
}
}    
swift mapkit mklocalsearchrequest
1个回答
0
投票

我们试图让searchController先行。

按照这个设置searchController

  1. 声明搜索控制器,你有这个。 let searchController = UISearchController(searchResultsController: nil)
  2. viewDidLoad()
navigationItem.searchController = searchController
searchController.searchResultsUpdater = self
definesPresentationContext = true
  1. 设置搜索控制器文本更新,确保您的控制器符合UISearchResultsUpdating协议
extension LocationSearchTable: UISearchResultsUpdating {
    func updateSearchResults(for searchController: UISearchController) {
        if let searchText = searchController.searchBar.text {
            print(searchText)
        }
    }
}

当我们使用UISearchController时,我们不需要设置searchBar

下面的评论让我知道搜索文本是否可以打印出来。然后我们可以继续。

© www.soinside.com 2019 - 2024. All rights reserved.