Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove iOS 11 search bar from view and update UI

In xcode 9 when I put the search bar in view its moves the rest of the UI down automatically. When I try to remove the searchbar from view I get a black space instead of the UI being corrected. The line I am using is: self.navigationItem.searchController = nil. I tried many things but I do not know how to correct the UI after the search bar is removed. Only when I move to another view controller and back the UI is correct again without the search bar. What am I missing here?

code:

@IBAction func searchIconPressed(_ sender: UIBarButtonItem) {

    //ios 11
    if #available(iOS 11.0, *) {
         if self.navigationItem.searchController == nil {
            self.navigationItem.searchController = self.searchController
            self.searchController.isActive = true

        }
        else {
            self.navigationItem.searchController?.isActive = false
            self.navigationItem.searchController = nil
        }
    }
    //when ios 9-10
    else {
        if self.navigationItem.titleView == nil {
            self.navigationItem.titleView = self.searchController.searchBar
            self.searchController.isActive = true
        }
        else {
            self.navigationItem.titleView = nil
        }
    }
}

}

like image 217
Frank van der Meulen Avatar asked Oct 01 '17 15:10

Frank van der Meulen


2 Answers

And here for Objective C

[self.navigationItem.searchController setActive:NO];
UISearchController *nilSearch = [[UISearchController alloc] initWithSearchResultsController:nil];
self.navigationItem.searchController = nilSearch;
self.navigationItem.searchController = nil;
like image 148
Herbert Bay Avatar answered Oct 27 '22 08:10

Herbert Bay


The answer for removing the search bar from view and make UI move up again:

self.navigationItem.searchController?.isActive = false
let search = UISearchController(searchResultsController: nil)
self.navigationItem.searchController = search
self.navigationItem.searchController = nil
like image 34
Frank van der Meulen Avatar answered Oct 27 '22 06:10

Frank van der Meulen