UISearchController 结果 TableViewController 在 UISearchBar 为空时不清除结果

Posted

技术标签:

【中文标题】UISearchController 结果 TableViewController 在 UISearchBar 为空时不清除结果【英文标题】:UISearchController results TableViewController doesn't clear results when UISearchBar is empty 【发布时间】:2020-05-03 18:47:32 【问题描述】:

我不擅长 ios 开发,遇到了一个简单的问题。

我正在尝试创建一个 UISearchController,当它首次启动或 UISearchBar 为空时(无论是退格、点击 x 以清除字段,还是取消UISearchBar)。

当 UISearchBar 第一次获得焦点时,我已经完成了添加空消息,但是在发生搜索后,当我取消搜索并清空 UISearchBar 后,旧的搜索结果仍在结果表视图中。

我认为一直都是这样,但我之前没有看到旧的结果,而现在我设置了searchController.searchResultsController?.view.isHidden = false,以便在控制器首次启动时能够看到背景。

我进行了相当广泛的搜索,但无法弄清楚如何清除旧结果。

我的整个结果 TableViewController 代码:

import UIKit
import MapKit
import Mapbox

class LocationSearchTableViewController: UITableViewController 

    var matchingItems: [MKMapItem] = []
    var mapView: MGLMapView? = nil

    // This somehow connects and pleases the delegate
    var handleMapSearchDelegate: HandleMapSearch? = nil

    // Address formatting, not entirely sure what this is doing
    func parseAddress(selectedItem: MKPlacemark) -> String 
        // put a space between "4" and "Melrose Place"
        let firstSpace = (selectedItem.subThoroughfare != nil && selectedItem.thoroughfare != nil) ? " " : ""
        // put a comma between street and city/state
        let comma = (selectedItem.subThoroughfare != nil || selectedItem.thoroughfare != nil) && (selectedItem.subAdministrativeArea != nil || selectedItem.administrativeArea != nil) ? ", " : ""
        // put a space between "Washington" and "DC"
        let secondSpace = (selectedItem.subAdministrativeArea != nil && selectedItem.administrativeArea != nil) ? " " : ""
        let addressLine = String(
            format:"%@%@%@%@%@%@%@",
            // street number
            selectedItem.subThoroughfare ?? "",
            firstSpace,
            // street name
            selectedItem.thoroughfare ?? "",
            comma,
            // city
            selectedItem.locality ?? "",
            secondSpace,
            // state
            selectedItem.administrativeArea ?? ""
        )
        return addressLine
    


// Extension with UISearchResultsUpdating delegate protocols
extension LocationSearchTableViewController: UISearchResultsUpdating 
    func updateSearchResults(for searchController: UISearchController) 

        // This unhides the results view so it's visible when the field is focused
        searchController.searchResultsController?.view.isHidden = false

        // Get searchbar text and make query
        guard let _ = mapView,
            let searchBarText = searchController.searchBar.text else  return 
        let request = MKLocalSearchRequest()
        request.naturalLanguageQuery = searchBarText
        let search = MKLocalSearch(request: request)

        search.start  response, _ in
            guard let response = response else 
                return
            
            self.matchingItems = response.mapItems
            self.tableView.reloadData()
        

        if searchBarText == "" 
//            searchResults.removeAll()
            tableView.reloadData()
        
    


// Extension with all UITableViewDataSource methods grouped together
extension LocationSearchTableViewController 

    // Create rows based on number of returning items
    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int 
        if matchingItems.count == 0 
            setEmptyMessage()
         else 
            restore()
        


        return matchingItems.count
    


    // Populate cells
    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 
        let cell = tableView.dequeueReusableCell(withIdentifier: "cell")!
        let selectedItem = matchingItems[indexPath.row].placemark
        cell.textLabel?.text = selectedItem.name
        cell.detailTextLabel?.text = parseAddress(selectedItem: selectedItem)

        return cell
    


// Groups UITableViewDelegate methods together
extension LocationSearchTableViewController 

    // Function that fires on tapping a row
    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) 

        // Assign placemark value (coordinates)
        let selectedItem = matchingItems[indexPath.row].placemark


        // Delegate function that passes placemark
        handleMapSearchDelegate?.dropPin(placemark: selectedItem)

        // Dismiss searchController
        dismiss(animated: true, completion: nil)
    


extension LocationSearchTableViewController 

    func setEmptyMessage() 
        let rect = CGRect(origin: CGPoint(x: 0,y :0), size: CGSize(width: self.view.bounds.size.width, height: self.view.bounds.size.height))
        let messageLabel = UILabel(frame: rect)
        messageLabel.text = "Empty"
        messageLabel.textColor = .black
        messageLabel.numberOfLines = 0
        messageLabel.textAlignment = .center
        messageLabel.font = UIFont(name: "TrebuchetMS", size: 15)
        messageLabel.sizeToFit()

        self.tableView.backgroundView = messageLabel
        //            self.tableView.backgroundView?.isHidden = false
        self.tableView.backgroundColor = Colors.black1
        self.tableView.separatorStyle = .none
    

    func restore() 
        self.tableView.backgroundView = nil
        self.tableView.separatorStyle = .singleLine
    

以及实现 UISearchController 的主 ViewController 中的相关(我认为)UISearchBar 代码:

func searchBarCancelButtonClicked(_ searchBar: UISearchBar) 

        if let navigationController = navigationController  // this unwraps navigation controller
            navigationController.setNavigationBarHidden(true, animated: true)
            UIView.animate(withDuration: 1) 
                self.placeholderView.alpha = 0
            
        
    

【问题讨论】:

当你这样做时发生了什么? if searchBarText == "" // searchResults.removeAll() tableView.reloadData() 你需要清除你的 dataArray .. 并调用 reloadData() 酷,我试试看!这样做的合适地点在哪里? 你好在吗? 【参考方案1】:

这是您清除 dataArray 所需的方法 .. 并在您的 tableView 上调用 reloadData()

func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) 
      if searchText.isEmpty 

                searchResults.removeAll()
                tableView.reloadData()

      
  

【讨论】:

嗯...由于 UISearchBar 与表结果位于单独的 VC 中,我收到一条错误消息,指出 searchResults 和 tableView 都是未解析的标识符。 updateSearchResults 这个函数是什么时候调用的? 谢谢!这解决了很大一部分问题。我在管理搜索查询和解决延迟方面遇到了一些更深层次的问题,这也有助于解决一些错误行为。

以上是关于UISearchController 结果 TableViewController 在 UISearchBar 为空时不清除结果的主要内容,如果未能解决你的问题,请参考以下文章

UISearchController 结果 TableViewController 在 UISearchBar 为空时不清除结果

UISearchController:即使搜索栏为空也显示结果

UISearchController - 搜索结果显示不同的记录

带有 UISearchController 的 resultController 中的空白结果

当我删除它们时,UISearchController 不会删除结果

搜索结果为空时 UITableView 中的 UISearchController 崩溃