3

我有带有字典的可变数组。我在表格视图中显示该数组。

现在我想实现搜索和显示控制器到表格视图。如何?

任何建议或代码..

在这里,我的数组按字母顺序在 uitableview 中显示“名称”键。

[
        {
            "name": "Fish",
            "description": "sdhshs",
            "colorCode": null,
        },
        {
            "name": "fry",
            "description": "sdhshs",
            "colorCode": null,
        },
        {
            "name": "curry",
            "description": "sdhshs",
            "colorCode": null,
        }
    ],
4

2 回答 2

2

这是一个示例代码

NSMutableArray *filteredResult; // this holds filtered data source
NSMutableArray *tableData; //this holds actual data source

-(void) filterForSearchText:(NSString *) text scope:(NSString *) scope
{
    [filteredResult removeAllObjects]; // clearing filter array
    NSPredicate *filterPredicate = [NSPredicate predicateWithFormat:@"SELF.restaurantName contains[c] %@",text]; // Creating filter condition
    filteredResult = [NSMutableArray arrayWithArray:[tableData filteredArrayUsingPredicate:filterPredicate]]; // filtering result
}

委托方法

-(BOOL) searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
    [self filterForSearchText:searchString scope:[[[[self searchDisplayController] searchBar] scopeButtonTitles] objectAtIndex:[[[self searchDisplayController] searchBar] selectedScopeButtonIndex] ]];

    return YES;
}

-(BOOL) searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchScope:(NSInteger)searchOption
{
    [self filterForSearchText:self.searchDisplayController.searchBar.text scope:
 [[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:searchOption]];

    return YES;
}

在 NSPredicate 条件 "@"SELF.restaurantName contains[c] %@",text " restaurantName 是需要过滤的属性名称。如果您的数据源数组中只有 NSString,您可以使用 @"SELF contains[c] %@",text

过滤器完成后,您需要相应地实现您的 tableview 委托。像这样的东西

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

    }

}

比较 tableview 是过滤后的 tableview 还是原始 tableview 并相应地设置 tableview 的委托和数据源。请注意,searchDisplayController 是 UIViewcontroller 的可用属性,我们可以使用它来显示过滤结果。

要使上述代码正常工作,如果您在 XIB 或情节提要中使用它,则需要使用“搜索栏和搜索显示”对象

于 2013-08-09T11:45:02.367 回答