UISearchDisplayController "shouldReloadTableForSearchString return NO" перезагружает таблицу - PullRequest
4 голосов
/ 29 апреля 2010

Почему мой UISearchDisplayController показывает «Нет результатов», даже если метод shouldReloadTableForSearchString возвращает NO? Разве это не должно ничего делать и оставаться черным? Как я могу предотвратить это?

#import "RootViewController.h"

@implementation RootViewController

#pragma mark Table view methods

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}


// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        return 0;
    }
    return 10;
}


// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

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

    // Configure the cell.
    cell.textLabel.text = [NSString stringWithFormat:@"row %d", indexPath.row];

    return cell;
}

#pragma mark SearchController stuff

- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
    return NO;
}


- (void)dealloc {
    [super dealloc];
}


@end

1 Ответ

0 голосов
/ 07 апреля 2011

Нет, tableViews (включая searchTableView, созданный UISearchDisplayController) автоматически загружают данные при их отображении.Метод shouldReloadTableForSearchString: предотвратит перезагрузку таблицы только при вводе символов в поле поиска.

См. Мой ответ на UISearchDisplayContoller - невозможно предотвратить перезагрузку таблицы при вводе в строке поиска для предложений о том, как справиться с этим.

...