How do I embed the search bar with the navigation bar items?
I used [searchBar sizeToFit]
and it didn't work and without using displaysSearchBarInNavigationBar
the navigation bar disappears when clicking on the searchBar.
I tried the answer in UISearchDisplayController UISearchDisplayController hiding navigation bar
-(void)viewDidLayoutSubviews{
[self.navigationController setNavigationBarHidden:NO animated:NO];
}
but it causes the UISearchDisplayController searchResultsTableView
to be displayed below navigation bar while hiding the search bar.