SearchBar not displaying results until cancel button clicked
问题 I have implemented a UITableView with search bar (and search display) - all works fine, but the table results do not get updated until the search bar cancel button is tapped. Delegate methods: - (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar { // asynchronous request with [self.tableView reloadData] in the connectionDidFinishLoading [self getProductData:searchBar.text]; [searchBar resignFirstResponder]; [self.tableView reloadData]; } - (void)searchBar:(UISearchBar *)searchBar