Disable UISearchbar scrolling that is added to UITableView

I am adding UISearchBAr to UITableView to implement search functions.

But after the search is done, the UISearchBar also scrolls and disappears along with the UITableView. I just want to know how to make a static search bar only with a UITableView scroll ...

+5
source share
1 answer

I assume that you add a searchBar to the tableView headerView, so it scrolls along with the rest of the table. Try adding a searchBar to the view (NOT tableView) and resize the frame of your tableView below the search level.

+4
source

All Articles