想在 swift 中创建类似 google 的搜索栏

want to create a search bar like google in swift

我有一个像 ["apple","appear","Azhar","code","BCom"] 这样的数组。这个数组包含超过半个百万条记录。

现在我想做的是像 google 一样放置一个 UISearchBar 然后每当用户键入文本时,下拉列表就会出现所有包含该文本的结果和用户可以 select 从列表中选择一个。

例如 - 如果用户键入 "a",则 "apple"、"appear" 和 "Azhar" 将出现在下拉列表中。

我不想使用 UITableView 或其他任何方式来加载记录。每当用户键入任何单词时,它应该从数组中收集记录并下拉显示它们。

我该怎么做? 请提出建议。

非常简单的代码就可以解决问题,搜索栏过滤器很简单,至于下拉菜单,我使用名为 'DropDown' 的第三方 Pod,非常易于使用:https://github.com/AssistoLab/DropDown

import UIKit
import DropDown

class ViewController: UIViewController, UISearchBarDelegate {

var data: [String] = ["apple","appear","Azhar","code","BCom"]
var dataFiltered: [String] = []
var dropButton = DropDown()

@IBOutlet weak var searchBar: UISearchBar!

override func viewDidLoad() {
    super.viewDidLoad()

    dataFiltered = data

    dropButton.anchorView = searchBar
    dropButton.bottomOffset = CGPoint(x: 0, y:(dropButton.anchorView?.plainView.bounds.height)!)
    dropButton.backgroundColor = .white
    dropButton.direction = .bottom

    dropButton.selectionAction = { [unowned self] (index: Int, item: String) in
        print("Selected item: \(item) at index: \(index)") //Selected item: code at index: 0
    }
}

func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
    dataFiltered = searchText.isEmpty ? data : data.filter({ (dat) -> Bool in
        dat.range(of: searchText, options: .caseInsensitive) != nil
    })

    dropButton.dataSource = dataFiltered
    dropButton.show()
}

func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
    searchBar.setShowsCancelButton(true, animated: true)
    for ob: UIView in ((searchBar.subviews[0] )).subviews {
        if let z = ob as? UIButton {
            let btn: UIButton = z
            btn.setTitleColor(UIColor.white, for: .normal)
        }
    }
}

func searchBarTextDidEndEditing(_ searchBar: UISearchBar) {
    searchBar.showsCancelButton = false
}

func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
    searchBar.resignFirstResponder()
    searchBar.text = ""
    dataFiltered = data
    dropButton.hide()
}
}