Naq*_*med 1 xcode uisearchbar searchbar swift
我有一个数组,例如[“ apple”,“ appear”,“ Azhar”,“ code”,“ BCom”]等。此数组包含超过一半的记录。
现在,我要做的是UISearchBar在Google中放置一个“ like”,然后每当用户键入文本时,就会出现下拉列表,其中包含该文本的所有结果,用户可以从列表中选择一个。
例如,如果用户键入“ a”,则“苹果”,“出现”和“ 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()
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1804 次 |
| 最近记录: |