SearchBar过滤和调整UITableView单元格?

时间:2013-08-14 06:36:00

标签: ios uitableview uisearchbar

我的目标是使用搜索栏过滤tableview的单元格。关键是我在自定义单元格中有一个按钮,此按钮是否隐藏它是否被添加到右侧列表中(这是另一个uiview)

例如,我已使用右侧的加号按钮添加一个单元格并隐藏加号按钮,并使用搜索栏进行过滤。当我为我添加的单元格进行过滤时,它应该带有隐藏的加号按钮。因为它已在过滤之前添加。

我已经为searchBar的textDidChange方法写了一些代码,但仍然无法做到。

如何实现这一目标?

我的试用代码;

-(void)searchBar:(UISearchBar*)searchBar textDidChange:(NSString*)text
{


        NSArray *cells = [tableView visibleCells];

    for (DoctorListCell *cell in cells)
    {
        NSLog(@"Cell: %d",cell.plusButton.tag);

        if(cell.plusButton.tag==0)
        {
                            [cell.plusButton setHidden:YES];

                            [tableView reloadData];
        }

    }

if(text.length == 0)
{
    isFiltered = FALSE;
}
else
{
    isFiltered = TRUE;
    filteredListContent = [[NSMutableArray alloc] init];

    for (PlannedCustomer* docs in doctorsTable)
    {
        NSRange nameRange = [docs.customerName rangeOfString:text options:NSCaseInsensitiveSearch];
        if(nameRange.location != NSNotFound)
        {
            [filteredListContent addObject:docs];
        }
    }
}

[self.tableView reloadData];
}

1 个答案:

答案 0 :(得分:0)

在过滤过滤列表中的单元格后,尝试在cellForRowAtIndexpath方法中设置单元格的隐藏属性。或者您可以设置隐藏在tableView:willDisplayCell:forRowAtIndexPath:

<强>更新:

如果加号按钮是子视图,则覆盖然后在自定义单元格类的某个方法中设置隐藏属性。然后调用该方法。

或者您可以删除加号按钮而不是隐藏。

例如:

-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSArray *nib;
    static NSString *cellIdentifier= @"cell";

    UITableViewCell *theCell = [self.tblView dequeueReusableCellWithIdentifier:cellIdentifier];

    if([theCell.contentView subviews]){
        for(UIView *view in [theCell.contentView subviews]){
            [view removeFromSuperview];
        }
    }

    if(theCell== nil)
    {
        nib  = [[NSBundle mainBundle] loadNibNamed:@"Your custom cell name" owner:self options:nil]; 
        theCell = [nib objectAtIndex:0];
        theCell.selectionStyle = UITableViewCellSelectionStyleNone;
    }

    UIButton *btn=(UIButton*)[theCell.contentView viewWithTag:101];
if(yourcondition)
//hide button
else
//show button
}