UISearchBar in navigationbar
ios, uinavigationbar, uisearchbar
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;
Problem
How can I show a UISearchBar in the NavigationBar? I can't figure out how to do this. Your help is very much appreciated.