Rahul Kalidindi
Rahul Kalidindi

Reputation: 4736

Disable Scrolling of UISearchbar that is added to UITableView

I have add a UISearchBAr to the UITableView to implement search functionality.

But after searching is done, the UISearchBar is also scrolling and disappearing along with the UITableView. I just want to know how to make the search bar static with only the UITableView scrolling...

Upvotes: 5

Views: 1797

Answers (1)

jdrama418
jdrama418

Reputation: 216

I assume your adding the searchBar to the tableView's headerView, which is why it scrolls along with the rest of the table. Try adding the searchBar to the view (NOT the tableView) and resize the frame of your tableView to be below the searchBar.

Upvotes: 4

Related Questions