views:

33

answers:

0

I have a UISearchDisplayController that is being used to display a long list of options for the user to pick. I filter the list using the search bar supplied by the controller.

It all works ok, apart from I can't get the results table to display except by entering text into the search bar. I want to have the table show all the results I have, even when there is no text in the search bar. At present, when there is no text I just have a dimmed underlying view.

Is this possible please? Or should I not bother with the UISearchDisplayController at all, and just have a searchbar in another tableview that I display, and then just pop it off the stack?