没有在自定义 UISearchBar 中获取过滤器数据

Not getting filter data in Custom UISearchBar

我正在 swift 3 中从事一个项目,我有一个特定的 UIViewController,其中有一个 UITableView 并在其单元格上填充数据,数据是从服务器获取的,我将其分配JSON 类型的数组。我想实现一个自定义 UISearchBar 来过滤这些数据。我已经部分地研究了代码,如下所示。

import UIKit
import SwiftyJSON
import SDWebImage


class ViewController: UIViewController,UITableViewDelegate,UITableViewDataSource,UISearchResultsUpdating,UISearchBarDelegate {    

    @IBOutlet weak var tableView: UITableView!
    @IBOutlet weak var searchBar: UISearchBar!    
    var searchActive : Bool?
    var selectedCategoryList = [JSON?]()
    var filterSelectedCategoryList = [JSON?]()
    var lab :String?
    let searchController = UISearchController(searchResultsController: nil)
    override func viewDidLoad() {
    super.viewDidLoad()
            passJson()

     self.searchBar.delegate = self
            self.tableView.reloadData()
    }

            func updateSearchResults(for searchController: UISearchController) {
    }
        func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
            filterSelectedCategoryList = selectedCategoryList.filter { titles in
                return (titles?["healerName"].stringValue.lowercased().contains(searchText.lowercased()))!
            }
            tableView.reloadData()
            print("Array : ", filterSelectedCategoryList)
        }

     func passJson() {
            let path : String = Bundle.main.path(forResource: "JsonFile", ofType: "json") as String!

            let jsonData = NSData(contentsOfFile: path) as NSData!

            let readableJson = JSON(data: jsonData as! Data, options: JSONSerialization.ReadingOptions.mutableContainers, error: nil)

            let json = readableJson

             print(json)

            let selectedItemArray = json["itemList"].arrayValue
            self.selectedCategoryList = selectedItemArray
            print("new prints",self.selectedCategoryList)
            tableView.reloadData()
            // print( "Count",selectedItemArray?.count as Any)


            self.count = self.selectedCategoryList.count
            print(self.count)


        }


        func numberOfSections(in tableView: UITableView) -> Int {
            return 1
        }


        func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
            if self.searchController.isActive && self.searchBar.text != ""{
                return filterSelectedCategoryList.count
            }else{
                return selectedCategoryList.count
            }

        }

        func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

            let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! TableViewCell
            if count > 0 {
                if self.searchController.isActive && self.searchBar.text != ""{

                    cell.label.text = filterSelectedCategoryList[indexPath.row]?["healerName"].stringValue


                }else{
                    cell.label.text = selectedCategoryList[indexPath.row]?["healerName"].stringValue
                    cell.textLabel?.text = selectedCategoryList[indexPath.row]?["id"].stringValue
                    //cell.textLabel?.text=
                    self.lab = cell.textLabel?.text

                    cell.textLabel?.isHidden = true
                }


            }

            return cell
        }

根据您的代码,您使用的是 UISearchBar 而不是 UISearchController,因此您只需比较方法 numberOfRowsInSection 和 [=15= 中的 searchBar 文本], 别拿searchController.isActive 跟它比.

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if self.searchBar.text != ""{
        return filterSelectedCategoryList.count
    }else{
        return selectedCategoryList.count
    }        
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! TableViewCell
    if self.searchBar.text != ""{
        cell.label.text = filterSelectedCategoryList[indexPath.row]?["healerName"].stringValue

    }else{
        cell.label.text = selectedCategoryList[indexPath.row]?["healerName"].stringValue
        cell.textLabel?.text = selectedCategoryList[indexPath.row]?["id"].stringValue
        //cell.textLabel?.text=
        self.lab = cell.textLabel?.text

        cell.textLabel?.isHidden = true
    }
    return cell
}