Reputation: 4059
Is it possible to move a have a search bar at the top of a table and avoid it scrolling in IOS5?
Like this, the arrow show where I want to have searcher
Thanks!
Upvotes: 0
Views: 453
Reputation: 8808
Well, one approach would be to situate a UISearchBar outside the UITableView. Then it obviously will not scroll with the table view.
If you want to use UISearchDisplayController (and get all the nice animations that come with it), I think you will have a tougher time.
Upvotes: 1