iPhone - проблемы с UITableView - перезагрузка данных и отсутствие попаданий - PullRequest
0 голосов
/ 06 января 2010

Я использую этот пример примера кода Apple:

http://developer.apple.com/iPhone/library/samplecode/TableSearch/index.html

В этом примере UITableView получает список содержимого при запуске. При нажатии на UISearchBar и вводе, список содержимого будет отфильтрован, также проверяется область действия ScopeBar.

Я должен перестроить этот вид «мгновенного поиска» в «обычный поиск»: вначале у меня нет данных для TableView. Пользователь должен щелкнуть на панели поиска, ввести что-то, нажать кнопку «Поиск» и запрос на поиск будет отправлен на веб-сервер. Ответ веб-сервера будет помещен в TableView, и пользователь может переключить область действия, чтобы отфильтровать набор результатов. Изменение значения панели поиска не фильтрует список результатов. Только нажатие кнопки «Поиск» инициирует поисковый запрос.

Я взял пример кода и перестроил его (исходный код внизу). Но у меня есть две проблемы с этим.

  1. При первоначальном вызове SearchViewController (с TabBar, SearchBar, ScopeBar, TableView) все в порядке. Там есть пустой TableView. Но, нажимая на панели поиска и печатая только один символ, появляется сообщение, что "нет попаданий". Как я мог избежать этого? Это сообщение должно появляться только в том случае, если пользователь нажал «Поиск» и совпадений действительно нет.
  2. Моя вторая проблема: набрав «привет» и нажав «Поиск», TableView не выводит список результатов. Если я нажму «отменить» или в другой области, результаты будут перечислены. Значит, должно быть что-то вроде пропущенной «перезагрузки»?!

Надеюсь, кто-нибудь сможет мне помочь. Большое спасибо в adavence & Best Regards.

Мой исходный код:

@implementation SearchViewController

@synthesize listContent, filteredListContent, savedSearchTerm, savedScopeButtonIndex, searchWasActive;

- (void)viewDidLoad {
    // restore search settings if they were saved in didReceiveMemoryWarning.
    if (self.savedSearchTerm) {
        [self.searchDisplayController setActive:self.searchWasActive];
        [self.searchDisplayController.searchBar setSelectedScopeButtonIndex:self.savedScopeButtonIndex];
        [self.searchDisplayController.searchBar setText:savedSearchTerm];
        self.savedSearchTerm = nil;
    }
}

- (void)viewDidUnload {
    // Save the state of the search UI so that it can be restored if the view is re-created.
    self.searchWasActive = [self.searchDisplayController isActive];
    self.savedSearchTerm = [self.searchDisplayController.searchBar text];
    self.savedScopeButtonIndex = [self.searchDisplayController.searchBar selectedScopeButtonIndex];
    self.filteredListContent = nil;
}

- (void)dealloc {
    [listContent release];
    [filteredListContent release];
    [super dealloc];
}

- (void)setData {
    self.listContent = [NSMutableArray arrayWithCapacity:3];
    [self.listContent addObject:[SearchObjects itemWithType:@"AAA" name:@"Test1"]];
    [self.listContent addObject:[SearchObjects itemWithType:@"BBB" name:@"Test2"]];
    [self.listContent addObject:[SearchObjects itemWithType:@"BBB" name:@"Test3"]];

    // create a filtered list
    self.filteredListContent = [NSMutableArray arrayWithCapacity:[self.listContent count]];
    [self.tableView reloadData];
    self.tableView.scrollEnabled = YES;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    //If the requesting table view is the search display controller's table view, return the count of the filtered list, otherwise return the count of the main list.
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        return [self.filteredListContent count];
    } else {
        return [self.listContent count];
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *kCellID = @"cellID";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellID];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kCellID] autorelease];
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }

    /* If the requesting table view is the search display controller's table view, configure the cell using the filtered content, otherwise use the main list. */
    SearchObjects *searchObject = nil;
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        searchObject = [self.filteredListContent objectAtIndex:indexPath.row];
    } else {
        searchObject = [self.listContent objectAtIndex:indexPath.row];
    }
    cell.textLabel.text = searchObject.name;
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    // HERE IS THE SOURCE CODE FOR PUSHING TO THE NEXT VIEW
}

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {
    // DO SOME CALCULATIONS… AND THE setData METHOD IS CALLED
}

- (void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope {
    /* Update the filtered array based on the search text and scope. */
    [self.filteredListContent removeAllObjects]; // First clear the filtered array.

    /* Search the main list for whose type matches the scope (if selected) and whose name matches searchText; add items that match to the filtered array. */
    for (SearchObjects *searchObject in listContent) {
        if ([scope isEqualToString:@"All"] || [searchObject.type isEqualToString:scope]) {
        NSComparisonResult result = [searchObject.name compare:searchText options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch) range:NSMakeRange(0, [searchText length])];
            if (result == NSOrderedSame) {
                [self.filteredListContent addObject:searchObject];
            }
        }
    }
}

- (void)filterContentForScope:(NSString*)scope {
    /* Update the filtered array based on the search text and scope. */
    [self.filteredListContent removeAllObjects]; // First clear the filtered array.

    /* Search the main list for whose type matches the scope (if selected); add items that match to the filtered array. */
    for (SearchObjects *searchObject in listContent) {
        if ([scope isEqualToString:@"All"] || [searchObject.type isEqualToString:scope]) {
            [self.filteredListContent addObject:searchObject];
        }
    }
}

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
    [self filterContentForScope:[[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:[self.searchDisplayController.searchBar selectedScopeButtonIndex]]];    
    // Return YES to cause the search result table view to be reloaded.
    return YES;
}

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchScope:(NSInteger)searchOption {
    [self filterContentForScope:[[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:searchOption]];
    // Return YES to cause the search result table view to be reloaded.
    return YES;
}
@end

Ответы [ 2 ]

0 голосов
/ 07 января 2010

Проблема решена, см. В комментариях.

0 голосов
/ 07 января 2010

Для вашей первой проблемы вы должны установить делегата для панели поиска, а затем внедрить – searchBarSearchButtonClicked: и вставить туда свой код поиска. Вам также может потребоваться реализовать другие, такие как – searchBarTextDidEndEditing: или – searchBar:textDidChange:, и убедиться, что они не выполняют поиск.

По второму вопросу вы можете просто перезагрузить tableView, снова используя делегата из – searchBarSearchButtonClicked:, чтобы убедиться, что это произойдет после того, как вы уже произвели поиск. Вы можете использовать [tableView reloadData] для этого.

...