Skip to content

Instantly share code, notes, and snippets.

@alex-zige
Last active May 23, 2023 09:45
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save alex-zige/523f8f0a8534eebff731 to your computer and use it in GitHub Desktop.
Save alex-zige/523f8f0a8534eebff731 to your computer and use it in GitHub Desktop.
Custom Search Bar in Nav

#UI Caveats

http://stackoverflow.com/questions/19927542/ios7-backgroundimage-for-uisearchbar

//clear the transparent background when search bar promot
[self.searchDisplayController.searchBar setBackgroundImage:[self imageWithColor:[UIColor yourColor]] 
                                             forBarPosition:0 
                                                 barMetrics:UIBarMetricsDefault];

#Custom Search in Nav bar:

- (void)prepareSearchControl{
    //presist nav bar items
    leftButton = self.navigationItem.leftBarButtonItem;
    rightButton = self.navigationItem.rightBarButtonItem;
    // set current navigation title view to be search bar.
    titleView = self.navigationItem.titleView; 
    
    // set up searchDisplayController
    self.searchDisplayController.delegate = self;
    self.searchDisplayController.searchBar.delegate = self;
    self.searchDisplayController.searchResultsDataSource = self;
    self.searchDisplayController.searchResultsDelegate = self;
  
    //set up frame -> this is not needed if you set displayInNavgiationBar -> YES. 
    self.searchDisplayController.searchResultsTableView.frame = self.tableView.frame;
    
    //custom tint color and fonts
    //tint color would aslo affect the color of the search box
    self.searchDisplayController.searchBar.tintColor = BASE_COLOR;
    //set cancel font color to be white
    [[UIBarButtonItem appearanceWhenContainedIn:[UISearchBar class], nil] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIColor whiteColor],UITextAttributeTextColor,[NSValue valueWithUIOffset:UIOffsetMake(0, 1)],UITextAttributeTextShadowOffset,nil] forState:UIControlStateNormal];
}

##when search button clicked

swape the current navigtation item title to searchbar.


-(IBAction)searchButtonClicked:(UIBarButtonItem *)sender
{
    self.navigationItem.titleView = self.searchDisplayController.searchBar;
    [self.searchDisplayController.searchBar becomeFirstResponder];
    self.navigationItem.leftBarButtonItem = nil; //set left button to nil
    self.navigationItem.rightBarButtonItem = nil; // set right button to nil, leave more space
}

#when search starts
- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
{
    [self.searchDisplayController.searchBar setShowsCancelButton:YES animated:YES];
    
    // add subviews
    [self.view addSubview:self.searchDisplayController.searchResultsTableView];
}

#when search done

- (void)searchBarTextDidEndEditing:(UISearchBar *)searchBar{
    [self.searchDisplayController.searchBar setShowsCancelButton:NO animated:YES];
    
    //restore back those bar button items
    self.navigationItem.leftBarButtonItem = leftButton;
    self.navigationItem.titleView = titleView;
    self.navigationItem.rightBarButtonItem = rightButton;
}

#When switch between views.

##handle check if current search and display controler is active
- (void)viewWillAppear:(BOOL)animated{
    if (self.searchDisplayController.isActive) {
        self.navigationItem.titleView = self.searchDisplayController.searchBar;
        self.navigationItem.rightBarButtonItem = nil;
        [self.searchDisplayController.searchBar setShowsCancelButton:YES animated:YES];
    }
}


@girubhai
Copy link

girubhai commented May 21, 2016

Hi,using above code search bar placed in navigation bar but not align centered instead it align top,so how to center align the search bar?
Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment