Important: UISearch
is deprecated in iOS 8. (Note that UISearch
is also deprecated.) To manage the presentation of a search bar and display search results in iOS 8 and later, instead use UISearch
.
SDKs
- iOS 3.0–8.0Deprecated
- Mac Catalyst 13.0–13.0Deprecated
Framework
- UIKit
Declaration
class UISearchDisplayController : NSObject
Overview
A search display controller manages the display of a search bar, along with a table view that displays search results.
You initialize a search display controller with a search bar and a view controller responsible for managing the data to be searched. When the user starts a search, the search display controller superimposes the search interface over the original view controller’s view and shows the search results in its table view.
In addition to managing the searchable data, the original view controller typically plays four more roles you need to fill when using a search display controller. Those roles are the following:
Data source for the search results table view (
search
), which provides the data for the results table.Results Data Source Delegate for the search results table view (
search
), which responds to the user’s selection of an item in the results table.Results Delegate Delegate for the search display controller (
delegate
), which responds to events such the starting or ending of a search, and the showing or hiding of the search interface.As a convenience, this delegate may also be told about changes to the search string or search scope, so that the results table view can be reloaded.
Delegate for the search bar (
delegate
described inUISearch
), which responds to changes in search criteria.Bar
Typically, you initialize a search display controller from a view controller (usually an instance of UITable
) that’s displaying a list. See the Simple UISearchBar with State Restoration sample code project for an example of how to configure a search display controller in Interface Builder. To perform configuration programmatically, set self
for the search display controller’s view controller and search results data source and delegate, as shown here:
searchController = [[UISearchDisplayController alloc]
initWithSearchBar:searchBar contentsController:self];
searchController.delegate = self;
searchController.searchResultsDataSource = self;
searchController.searchResultsDelegate = self;
If you follow this pattern, then in the table view data source and delegate methods you can check the methods’ table view argument to determine which table view is sending the message:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if (tableView == self.tableView) {
return ...;
}
// If necessary (if self is the data source for other table views),
// check whether tableView is searchController.searchResultsTableView.
return ...;
}
Important
A view controller or search bar can be associated with only a single search display controller at a time. If a search display controller is destroyed (for example, in response to a memory warning), then you can create a new one and associate it with the original view controller or search bar.
Starting in iOS 7.0, you can use a search display controller with a navigation bar (an instance of the UINavigation
class) by configuring the search display controller’s displays
and navigation
properties.