Guest User

Untitled

a guest
Jul 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. searchController = UISearchController(searchResultsController: nil)
  2. searchController?.searchBar.delegate = self
  3. searchController?.dimsBackgroundDuringPresentation = true
  4. searchController?.searchResultsUpdater = self
  5. navigationItem.searchController = searchController
  6.  
  7. var didPerformSearch: Bool = false
  8.  
  9. if didPerformSearch == true {
  10. yourSearchBar.isHidden = true
  11. }else{
  12. yourSearchBar.isHidden = false
  13. }
Add Comment
Please, Sign In to add comment