I am trying to add a searchBar to a navigationBar. I studied a little, and this is what I have done so far:
The problem is that this code is not displayed in the navigation block.
searchBar = UISearchBar(frame: CGRectMake(0, 0, 320, 44)) searchBar?.delegate = self searchBar?.showsCancelButton = true searchController = UISearchDisplayController() searchController?.delegate = self searchController?.searchResultsDelegate = self searchController?.displaysSearchBarInNavigationBar = true
source share