这是一个示例代码
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 或情节提要中使用它,则需要使用“搜索栏和搜索显示”对象