I have a searchDisplayController that searches a UITableView.
After entering the search terms, I can see another UITableView that contains the search results. However, I want this UITableView to be GROUPED, not PLAIN (like it is by default).
How do I do this?
If – like me – you think the plain TableView was way too ugly, you can also abandon the use of SearchDisplayController.
I just:
[self.resultTableView reloadData];Here you can find all the method I used from the delegates
After all, the simplest solution is often the best…