我在视图控制器中有一个搜索栏,一旦用户单击enter,它就会从API中提取搜索数据,并用数据初始化atableview
。
func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
setupTableView()
UIView.animate(withDuration: 0.3, animations: {
self.searchLabel.removeFromSuperview()
self.searchBar.center = CGPoint(x: self.searchBar.frame.midX, y: 40)
self.tableView.frame = CGRect(x: 0, y: 25 + searchBar.frame.size.height, width: self.view.frame.width, height: self.view.frame.height - (25 + searchBar.frame.height) - (self.tabBarController?.tabBar.frame.size.height)!)
})
searchBar.setShowsCancelButton(true, animated: true)
}
以下是
setupTableView()
函数:func setupTableView() {
tableView = UITableView(frame: CGRect(x: 0, y: 44 + searchLabel.frame.height + searchBar.frame.size.height, width: view.frame.width, height: view.frame.height - (44 + searchLabel.frame.height + searchBar.frame.size.height) - (self.tabBarController?.tabBar.frame.size.height)!))
tableView.delegate = self
tableView.dataSource = self
tableView.register(SearchCell.self, forCellReuseIdentifier: "TableViewCell")
frame = tableView.frame
tableView.tableFooterView = UIView()
view.addSubview(tableView)
}
下面是当用户单击搜索栏旁边的“取消”时调用的函数。
func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
searchBar.text = ""
searchBar.setShowsCancelButton(false, animated: true)
searchBar.endEditing(true)
self.tableView.removeFromSuperview()
view.addSubview(searchLabel)
UIView.animate(withDuration: 0.3, animations: {
searchBar.center = self.center
})
}
这个函数中的所有代码都可以工作,除了
self.tableView.removeFromSuperView()
用户仍然可以看到和单击tableview。我也试过使用hide函数,但这也不起作用。我做错什么了?
最佳答案
如果多次初始化tableView,则需要首先检查tableView是否为nil。试试这个:
func setupTableView() {
if tableView == nil
{
tableView = UITableView(frame: CGRect(x: 0, y: 44 + searchLabel.frame.height + searchBar.frame.size.height, width: view.frame.width, height: view.frame.height - (44 + searchLabel.frame.height + searchBar.frame.size.height) - (self.tabBarController?.tabBar.frame.size.height)!))
tableView.delegate = self
tableView.dataSource = self
tableView.register(SearchCell.self, forCellReuseIdentifier: "TableViewCell")
frame = tableView.frame
tableView.tableFooterView = UIView()
}
if(!tableView.isDescendant(of: view)) {
self.view.addSubview(tableView)
}
}
关于ios - 调用removeFromSuperView()后,UITableView仍然存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48585908/