Reputation: 894
I have modified the Apple sample code "TableSearch", but there is one thing I managed not to figure out by myself. How to make self.title to be fixed when I click onto the search bar?
I dont want self.title to fly away when I click on the search bar.
EDIT 17 august
The issue is resolved, so I removed the two pictures.
Upvotes: 0
Views: 135
Reputation: 53551
You can't modify this behavior when using a UISearchDisplayController
(which the sample does). Use a UISearchBar
directly and set it as the headerView
of your table view.
Upvotes: 1