I need help with searchBar in landscape mode. I am adding it to the navigationBar titleView – centered:
self.searchBarTop = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 80, 30)];
self.navigationItem.titleView = self.searchBarTop;
In landscape mode it is to big to fit in properly:

Any suggestions?
Obviously this is gray area customizing UISearchBar. I have managed to use another way moving searchBar outside the navigationBar.