Reputation: 5321
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
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