Customize the action for your search button to submit UISearchController. See Demo Search> Present Over Navigation Barin Apple UICatalog sample code :
- (IBAction)searchButtonClicked:(UIBarButtonItem *)sender {
AAPLSearchResultsViewController *searchResultsController = [self.storyboard instantiateViewControllerWithIdentifier:AAPLSearchResultsViewControllerStoryboardIdentifier];
self.searchController = [[UISearchController alloc] initWithSearchResultsController:searchResultsController];
self.searchController.searchResultsUpdater = searchResultsController;
self.searchController.hidesNavigationBarDuringPresentation = NO;
[self presentViewController:self.searchController animated:YES completion:nil];
}
user4151918
source
share