有人可以查看我的代码吗?我正在尝试使用MAPKIT获得本地搜索结果。我使用了本教程:https://www.thorntech.com/2016/01/how-to-search-for-location-using-using-use--use-sapples-mapkit/
与教程的区别以及我正在做的是我不想显示MapView。我只想单击按钮,搜索controller升起,使我可以搜索位置。我遇到的问题是,搜索量没有被调用。抱歉,这是我第一次使用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()
}
}
}
}
我们尝试首先使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
。
下面的评论让我知道可以打印出搜索文本。然后我们可以继续。