我正在构建一个 iOS 应用程序,其中有一个车辆库存号列表,我需要搜索特定的。
我已经为 UITableView 实现了所需的方法,并设置了委托和源等 - 我的 tableview 出现并且工作正常。
奇怪的是,当我在顶部的搜索框中输入任何内容(由“搜索栏和搜索显示控制器”预制对象提供)时,应用程序崩溃:
*由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“-[CarLocateViewController tableView:numberOfRowsInSection:]:无法识别的选择器发送到实例 0x757d340”
这很奇怪,因为我已经实现了 tableView:numerOfRowsInSection:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
NSLog(@"Defining rows for table view: %i", allVehicles.count);
return allVehicles.count;
}
这对于单独的表格视图非常有效。
我还设置了搜索方法:
-(void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope {
[self.filteredVehicles removeAllObjects];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF.name contains[c] %@", searchText];
filteredVehicles = [NSMutableArray arrayWithArray:[allVehicles filteredArrayUsingPredicate:predicate]];
}
-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString {
[self filterContentForSearchText:searchString
scope:[[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:[self.searchDisplayController.searchBar selectedScopeButtonIndex]]];
return YES;
}
-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchScope:(NSInteger)searchOption {
// Tells the table data source to reload when scope bar selection changes
[self filterContentForSearchText:self.searchDisplayController.searchBar.text scope:
[[self.searchDisplayController.searchBar scopeButtonTitles] objectAtIndex:searchOption]];
// Return YES to cause the search result table view to be reloaded.
return YES;
}
任何帮助表示赞赏!