Dmitry
Dmitry

Reputation: 1041

UISearchBar with hidden UINavigationBar

I have the search bar in the top of the table and the hidden navigation bar. Along with UISearchBar I use UISearchDisplayController. UISearchDisplayController has the possibility to bring forward the navigation bar. So, when I tap the cancel button in the search bar, the navigation bar fly's down. How can I dismiss this possibility, so the navigation bar will always be hidden?

Thanks

Upvotes: 0

Views: 4486

Answers (2)

Dmitry
Dmitry

Reputation: 1041

Finnaly!!!! I've found the solution IPHONE: ABPeoplePickerNavigationController hidden navigation bar

Upvotes: 2

Nimrod
Nimrod

Reputation: 5133

One solution is to make the search bar the table header view in which case it will scroll with the table, and if you don't want it to appear by default then you can programmatically scroll the table down, non-animated, in viewWillAppear it is first displayed. This may or may not make sense for your UI design, but it is, for example, how Safari basically works.

Upvotes: 2

Related Questions