0

I can search with UISearchbar if UISearchbar and searchDisplayController is in the same view.

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString

Now, I have UISearchbar in header view and I need to show result in other view controller as shown in this picture. How can I set up uisearchbar with uisearchdisplaycontroller from different view?

enter image description here

Khant Thu Linn
  • 5,905
  • 7
  • 52
  • 120

1 Answers1

0

You need to set the searchResultsDataSource and searchResultsDelegate to the UITableView in the other view.

Lord Vermillion
  • 5,264
  • 20
  • 69
  • 109