调用removeFromSuperView()后,UITableView仍然存在

时间:2018-02-02 15:29:19

标签: ios swift uitableview

我在视图控制器中有一个搜索栏,一旦用户点击Enter,它就会从API中提取搜索数据并使用数据初始化tableview

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功能,但这也不起作用。我做错了什么?

1 个答案:

答案 0 :(得分:1)

你多次初始化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)
    }
}