Swift 3 - 禁用&启用分段控制

时间:2017-03-01 10:24:52

标签: ios swift swift3 segmentedcontrol

我有两个表视图,我通过选择分段控件在它们之间切换。我还有一个带搜索栏的搜索控制器。当我选择搜索栏时,应禁用分段控件,以便您无法选择第二个表视图。当我单击搜索栏中的取消按钮时,应再次激活分段控件。但这不起作用,分段控件保持禁用状态。 当我选择一个表视图单元格并返回到该视图控制器时,再次启用分段控件。但我希望在按下取消按钮时启用它。 我的代码如下:

   func deactivateSegment() {
    segmentedController.setEnabled(false, forSegmentAt: 1)
}

func activateSegment() {
    segmentedController.setEnabled(true, forSegmentAt: 1)
}


extension SegmentedTableController: UISearchResultsUpdating, UISearchBarDelegate {

func updateSearchResults(for searchController: UISearchController) {
    deactivateSegment()
    if searchController.searchBar.text != "" {
        filterContentForSearchText(searchText: searchController.searchBar.text!)
    } else {
        NotificationCenter.default.post(name: NSNotification.Name(rawValue: "update_view"), object: rumList, userInfo: nil)
    }
}

func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
    KCFABManager.defaultInstance().hide()
    deactivateSegment()
}

func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
    KCFABManager.defaultInstance().show()
    NotificationCenter.default.post(name: NSNotification.Name(rawValue: "update_view"), object: self.rumList, userInfo: nil)

   activateSegment()
}
}

我也尝试过segmentedController.isEnabled = false (&true)segmentedController.isUserInteractionEnabled = false (&true) 但这也行不通。

我做错了什么?

1 个答案:

答案 0 :(得分:0)

删除deactivateSegment()

的委托方法中的updateSearchResults
func updateSearchResults(for searchController: UISearchController) {
   // deactivateSegment()
  if searchController.searchBar.text != "" {

否则就像

一样
  func updateSearchResults(for searchController: UISearchController) {

    if searchController.searchBar.text != "" {
        filterContentForSearchText(searchText: searchController.searchBar.text!)
        activateSegment()
    } else {
        deactivateSegment()
        NotificationCenter.default.post(name: NSNotification.Name(rawValue: "update_view"), object: rumList, userInfo: nil)
    }
}