views:

438

answers:

2

Hi,

How can I make the search bar to scroll together with the table view? When I scroll my table view I want my search bar to go with it and disappear. I want to have done something similar to contacts app on the iPhone.

+3  A: 

You can place your searchbar in the tableView's header row. This will make it part of the tableView.

Jab
+1  A: 

Set up an empty table section, above or ahead of all other sections in your table view. Set this section's header to be your search bar view.

Alex Reynolds