Sebastian Boldt
Sebastian Boldt

Reputation: 5321

How to add a sticky searchbar to UITableViewController

i tried to add a sticky searchbar to my UItableViewController which is embedded inside a tabBarController. But i dont get it. I tried something out with a containerView, but i thought this couldnt be the right way to do this. Is there any best practice to add a sticky searchbar on top of a tableView ?

Thanks.

Upvotes: 0

Views: 1238

Answers (1)

jsd
jsd

Reputation: 7693

You can't use UITableViewController. You have to use a normal UIViewController and add the search bar and table view as separate subviews. Otherwise the searchbar will scroll with the table, as you've discovered.

Upvotes: 4

Related Questions