With iOS 11 Apple has redesigned the UISearchBar by making the corners rounder and the height bigger. Adding a UISearchBar to the navigationBar is pretty simple by just sett
This helped me:
if ([self.navigationItem respondsToSelector:@selector(setSearchController:)]) { [self.navigationItem performSelector:@selector(setSearchController:) withObject:self.searchController]; } else { self.tableView.tableHeaderView = self.searchController.searchBar; }