gpt4 book ai didi

ios - 以编程方式快速将搜索栏添加到 TableView

转载 作者:搜寻专家 更新时间:2023-10-31 08:10:18 24 4
gpt4 key购买 nike

我有一个文本字段,它代表一个 TableView 作为它的输入 View 。我想向该 TableView 添加 2 个内容。

1) 添加搜索栏。
2) 在tableview顶部添加取消按钮。

class enterYourDealVC: UIViewController, UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate, UISearchDisplayDelegate, UISearchResultsUpdating {
var tableView: UITableView = UITableView()
let searchController = UISearchController(searchResultsController: nil)

var dealAirports = [
airPorts(name: "Airport1", shortcut: "AP1")!),
airPorts(name: "Airport2", shortcut: "AP2")!)
]
var filteredAirports = [airPorts]()


//view did load
tableView = UITableView(frame: UIScreen.mainScreen().bounds, style: UITableViewStyle.Plain)
tableView.delegate = self
tableView.dataSource = self
tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")

searchController.searchResultsUpdater = self
searchController.dimsBackgroundDuringPresentation = false
definesPresentationContext = true
tableView.tableHeaderView = searchController.searchBar
toTextField.inputView = self.tableView

//here is my search function
func filterContentForSearchText(searchText: String, scope: String = "All") {
filteredAirports = dealAirports.filter { ap in
return ap.name.lowercaseString.containsString(searchText.lowercaseString)
}

tableView.reloadData()
}
}

问题在于此代码,它不进行搜索。此外,当我单击搜索栏时,它会关闭 tableview 并将我返回到 viewcontroller。我该如何解决这个问题?

如何向该表格 View 添加取消按钮?

最佳答案

这将添加一个 SeachBar

lazy var searchBar:UISearchBar = UISearchBar()

override func viewDidLoad()
{
searchBar.searchBarStyle = UISearchBar.Style.default
searchBar.placeholder = " Search..."
searchBar.sizeToFit()
searchBar.isTranslucent = false
searchBar.backgroundImage = UIImage()
searchBar.delegate = self
navigationItem.titleView = searchBar

}

func searchBar(_ searchBar: UISearchBar, textDidChange textSearched: String)
{
...your code...
}

关于ios - 以编程方式快速将搜索栏添加到 TableView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38508720/

24 4 0