在UISearchBar处于活动状态时更新UITableView

时间:2015-07-31 07:32:58

标签: ios objective-c uitableview uisearchbar uisearchdisplaycontroller

我正在编写一个iOS聊天应用程序,其中我必须使用搜索栏显示用户列表。我每隔2分钟就从服务器获取更新的用户列表。

我面临的问题是

案例:1 如果我的搜索栏处于活动状态,并且在更新数据源时调用reload表,现在如果我取消搜索,我就不会得到原始表。仅显示过滤结果。

案例:2 如果我的搜索栏处于活动状态并且我只是更新数据源并且不重新加载表,那么现在如果我取消搜索,它会循环到cellforrowatindexpath,因为新数据源中有元素,但它没有显示更新元素。事实上,它会混淆元素,因为它会考虑新的索引路径但使用旧数据。

我的意思是混乱,

  1. 假设旧数据源是具有头像图像a1,a2,a3,a4的a1,a2,a3和a4。

  2. 新数据源是a5,a1,a2,a3,a4,图像为a5,a1,a2,a3,a4。

  3. 所以我得到的混乱观点是 a1与a5图像, 带有a1图像的a2, a3与a4图像 a4没有图像。

  4. 4个细胞而不是5个细胞。

    案例:3(正常工作) 如果我的搜索栏处于活动状态且我甚至没有更新数据源,则取消搜索时没有任何反应(如预期的那样)。我必须重新加载表以获取更新的视图。

    我想要的是,即使搜索处于活动状态,它也应该更新表格,当我取消搜索时,我应该获得更新的表格视图。我知道这可以通过点击取消按钮时重新加载表来实现,但我试图找到一个优雅的解决方案。

    另外,请告诉我为什么这样工作背后的概念(内部工作原理)。

    我的代码:

    - (void)refreshUserList
    {
        if(dtclass.updatedUserList && [resultsArray count] ==0)
        {
            userArray = dtclass.getUpdatedUserList;
            [self.tableView reloadData];
            [dtclass setUpdatedUserList:NO];
        }
        else if(dtclass.updatedUserList && [resultsArray count] !=0)
        {
            //Uncomment for Case:1
            /*userArray = dtclass.getUpdatedUserList;
            [dtclass setUpdatedUserList:NO];
            [self.tableView reloadData];*/
    
            //Uncomment for Case:2
            /*userArray = dtclass.getUpdatedUserList;
            [dtclass setUpdatedUserList:NO];*/
    
            //remove else if code for Case:3
        }
    }
    
    
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return 1;
    }
    
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:    (NSInteger)section
    {
    
        if (resultsArray.count != 0)
        {
            return [resultsArray count];
        }
    
        return userArray.count;
    }
    
    
    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
    
        [tableView setSeparatorInset:UIEdgeInsetsMake(0, 70, 0, 0)];
    
        GlobalListTableViewCell *cell = (GlobalListTableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"GlobalListCell"];
    
        if (cell == nil)
        {
            NSArray *nib = [[NSBundle mainBundle]     loadNibNamed:@"GlobalListTableViewCell" owner:self options:nil];
            cell = [nib objectAtIndex:0];
        }
        //custome class User
        User *currentUser;
    
        if(resultsArray.count !=0)
        {
            currentUser = [resultsArray objectAtIndex:indexPath.row];
        }
        else
        {
            currentUser = [userArray objectAtIndex:indexPath.row];
        }
    
        cell.nameLabel.text = currentUser.getName;
        cell.timeLabel.text = @"5 pm";
    
        dispatch_async(fetchImage, ^{
    
            if([[currentUser getAvatarUrl] length]!=0)
            {
                [self loadImagesWithURL:[NSString stringWithFormat:@"%@%@",@"http:",[currentUser getAvatarUrl]] IndexPath:indexPath];
            }
        });
    
    
        cell.avatarImage.image = [UIImage imageNamed:@"defaultUser.png"];
        cell.messageLabel.text = @"No message";
    
        return cell;
    }
    
    -(void) loadImagesWithURL:(NSString *)imageURL IndexPath:(NSIndexPath *)indexPath
    {
        NSURL *url = [NSURL URLWithString:imageURL];
        NSData *data = [[NSData alloc ] initWithContentsOfURL:url];
    
        UIImage *img = [UIImage imageWithData:data];
    
        dispatch_async(dispatch_get_main_queue(), ^{
    
            GlobalListTableViewCell *cell = (GlobalListTableViewCell *)[self.tableView cellForRowAtIndexPath:indexPath];
            cell.avatarImage.image = img;
    
        });
    }
    
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:   (NSIndexPath *)indexPath
    {
        return 60;
    }
    
    
    - (void)filterContentForSearchText:(NSString*)searchText scope:    (NSString*)scope
    {
        resultsArray = [[NSArray alloc] init];
        NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"SELF.getName contains[c] %@", searchText];
    
        resultsArray = [userArray filteredArrayUsingPredicate:resultPredicate];
    }
    
    -(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
    {
        [self filterContentForSearchText:searchString
                               scope:  [[self.searchDisplayController.searchBar scopeButtonTitles]
                                      objectAtIndex: [self.searchDisplayController.searchBar
                                                     selectedScopeButtonIndex]]];
    
    
        return YES;
    }
    
    - (void)searchBarCancelButtonClicked:(UISearchBar *) aSearchBar {
        aSearchBar.text = nil;
    }
    

1 个答案:

答案 0 :(得分:1)

尝试使用此代码进行搜索..

- (void)filterContentForSearchText:(NSString*)searchText
{
    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF.getName contains[c] %@",searchText];
    _filteredGarages = [NSMutableArray arrayWithArray:[_allGarages filteredArrayUsingPredicate:predicate]];
}

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {
    [_filteredGarages removeAllObjects];
    if([searchText length] != 0) {           
        [self filterContentForSearchText:searchText];
    }
    [self.tableView reloadData];
}

- (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar {
    isSearching = NO;
    [self.tableView reloadData];
}

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {
    if([searchBar.text isEqualToString:@""])
        isSearching = NO;
    else isSearching = YES;
    [self.tableView reloadData];
}

-(void)searchBarTextDidEndEditing:(UISearchBar *)searchBar
{
    if([searchBar.text isEqualToString:@""])
        isSearching = NO;
    else isSearching = YES;
    [self.tableView reloadData];
}

- (void)viewDidLoad {
    [super viewDidLoad];
    resultsArray = [[NSMutableArray alloc] init];
    isSearching = NO;
    userArray = [[NSMutableArray alloc] init];
    userArray = [//GetYourData//];
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView == self.searchDisplayController.searchResultsTableView) {
        return [resultsArray count];
    } else {
        return [userArray count];
    }
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Do you table view cell job here ...

    if (tableView == self.searchDisplayController.searchResultsTableView) {
        isSearching = YES;
        //fill the cell using resultsArray
    } else {
        //fill the cell using userArray
    }
}
相关问题