Posts

Post not yet marked as solved
3 Replies
I've the following code inside my viewDidLoad for searchController in both the cases:searchController = UISearchController(searchResultsController: nil) searchController.searchResultsUpdater = self searchController.obscuresBackgroundDuringPresentation = false searchController.searchBar.placeholder = "Search" searchController.searchBar.becomeFirstResponder() searchController.searchBar.tintColor = Constants.primaryThemeColor navigationItem.searchController = searchController definesPresentationContext = true navigationItem.hidesSearchBarWhenScrolling = falseI have taken https://www.raywenderlich.com/472-uisearchcontroller-tutorial-getting-started as my reference.