Objective C UISearchBar - PullRequest
       10

Objective C UISearchBar

1 голос
/ 10 марта 2011

У меня есть небольшая проблема здесь. Почему моя строка поиска выполняет поиск, когда я начинаю вводить какой-либо текст? Вот код:

     - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
         [searchBar setShowsCancelButton:YES animated:YES];
         self.theTableView.allowsSelection = NO;
         self.theTableView.scrollEnabled = NO;
         [theTableView setRowHeight:110];
     }

     - (void)searchDisplayController:(UISearchDisplayController *)controller willShowSearchResultsTableView:(UITableView *)tableView {
         [tableView setRowHeight:[[self theTableView] rowHeight]];
         tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
         [self.tableData removeAllObjects];
     }

     - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar {
         searchBar.text=@"";

         [searchBar setShowsCancelButton:NO animated:YES];
         [searchBar resignFirstResponder];
         self.theTableView.allowsSelection = YES;
         self.theTableView.scrollEnabled = YES;
     }

     - (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {

       // all the function to search

     }

1 Ответ

1 голос
/ 10 марта 2011

Реализуйте searchDisplayController:shouldReloadTableForSearchString: и верните НЕТ. Это должно предотвратить автоматическую перезагрузку данных во время поиска.

...