I have a UISearchController with a UITableViewController as a searchResultsController, the UISearchBar of this sear
Have you tried to set the hidesNavigationBarDuringPresentation to false? Solved my headache..
self.searchController.hidesNavigationBarDuringPresentation = false;
Putting the searchbar in the navigation bar gives a more solid user experience in my opinion (for iphone)
self.navigationItem.titleView = self.searchController.searchBar;