有人可以查看我的代码吗?我正在尝试使用MapKit来获取本地搜索结果。我使用了本教程:https://www.thorntech.com/2016/01/how-to-search-for-location-using-apples-mapkit/
与本教程和我正在执行的操作的区别在于,我不想显示mapView。我只想单击按钮,然后将searchController调出,这使我可以搜索位置。我遇到的问题是SearchResultsUpdating没有被调用。抱歉,冗长的代码,这是我第一次使用MapKit本地搜索,我不知道自己缺少什么。
* EDIT已修复。附上修改后的代码。
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()
}
}
}
}
答案 0 :(得分:0)
我们尝试首先使searchController
工作。
在设置searchController
时遵循此步骤
let searchController = UISearchController(searchResultsController: nil)
viewDidLoad()
navigationItem.searchController = searchController
searchController.searchResultsUpdater = self
definesPresentationContext = true
UISearchResultsUpdating
协议extension LocationSearchTable: UISearchResultsUpdating {
func updateSearchResults(for searchController: UISearchController) {
if let searchText = searchController.searchBar.text {
print(searchText)
}
}
}
使用UISearchController
时,不需要设置searchBar
。
以下评论让我知道搜索文本可以打印或不打印。然后我们可以继续。