iPhone - UITableView - потерянные данные, если я вернусь - PullRequest
0 голосов
/ 08 января 2010

У меня есть TabBar, NavBar, SearchBar с ScopeBar на моем экране. Я могу искать данные через удаленный сервер и просматривать содержимое. Итак, у меня есть NSMutableArray listContent и FilterListContent, как в примере с Apple (TableSearch - http://developer.apple.com/iphone/library/samplecode/TableSearch/index.html):

Теперь я добавил в

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

эти строки:

    testDetailViewController *testDetailViewController = [[TestDetailViewController alloc] initWithNibName:@"TestDetailView" bundle:[NSBundle mainBundle]];
    testDetailViewController.title = testClass.name;
    testDetailViewController.myKey = testClass.keyId;
    [[self navigationController] pushViewController:testDetailViewController animated:YES];
    [testDetailViewController release];
    testDetailViewController = nil;

Из-за навигационной панели есть кнопка «назад». Если я нажму эту кнопку, TableView будет пустым, без совпадений / совпадений. Что я должен сделать, чтобы контент все еще был там?

Кто-нибудь знает?

Большое спасибо заранее и наилучшими пожеланиями.

Исходный код:

@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 ]

1 голос
/ 08 января 2010

В этом случае вам обычно ничего не нужно делать, данные должны оставаться на месте. Есть ли что-то, что выгружает данные? У вас есть функция viewWillDisappear, которая выгружает ваш массив? Вы делаете некоторые настройки массива в viewWillAppear.

Поместите оператор log в начало ваших методов, чтобы узнать, когда они вызываются, это даст вам более четкое представление о том, что происходит.

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

решено. Это была проблема, которая не очевидна с данным исходным кодом. В моей логике произошла ошибка.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...