views:

87

answers:

1

I want to close my UISearchDisplayController when the user clicks the "Search" button since I'm loading new data from the web. How do I close the controller programatically? I already have the proper method called, but don't know how to do it.

I thought that the below would work, but I'm wrong.

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {
    [self.searchDisplayController finalize];
}

Thanks for any help in advance!

+1  A: 
[self.searchDisplayController setActive:NO animated:YES];

Enjoy.

Raphael Caixeta