Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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...

like image 259
Rahul Kalidindi Avatar asked Oct 14 '22 23:10

Rahul Kalidindi


1 Answers

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.

like image 84
jdrama418 Avatar answered Oct 18 '22 09:10

jdrama418