我想在选择我的 searchBar 时显示 searchResultsTableView。我试过这个:
- (void) searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {
[self.searchDisplayController.searchResultsTableView reloadData];
[self.searchDisplayController setActive:YES animated:YES];
}
和这个:
- (void) searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller {
[self.searchDisplayController setActive:YES animated:YES];
}
两者都不起作用。在我的 numberOfRowsInSection 方法中,我确实在数组中有行,但 searchResultsTableView 在我开始输入之前不会显示。有什么想法吗?谢谢!