UISearchBar in navigationbar

Samui picture Samui · Feb 23, 2011 · Viewed 71.1k times · Source

How can I show a UISearchBar in the NavigationBar?

I can't figure out how to do this.

Your help is very much appreciated.

Answer

Borut Tomazin picture Borut Tomazin · Jan 30, 2012

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;