Search code examples
iosuinavigationbaruisearchbar

UISearchBar in navigationbar


How can I show a UISearchBar in the NavigationBar?

I can't figure out how to do this.

Your help is very much appreciated.


Solution

  • To put searchBar into the center of navigationBar:

    self.navigationItem.titleView = self.searchBarTop;
    

    To put searchBar to the left/right side of navigationBar:

    UIBarButtonItem *searchBarItem = [[UIBarButtonItem alloc] initWithCustomView:searchBar];
    self.navigationItem.rightBarButtonItem = searchBarItem;