0

我正在构建一个 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;
}

任何帮助表示赞赏!

4

2 回答 2

1

更改评论以回答:

这可能是一个愚蠢的问题,但是您的 tableview 数据源和委托以及 CarLocateViewController 对象中的必需函数?您提供的代码并没有准确说明这些方法的位置。

于 2013-06-18T16:05:28.563 回答
0

您分配给的类实例DataSource没有实现这些UITableViewDataSource功能。

 @interface MyClassController :UIViewController <UITableViewDelegate,UITableViewDataSource>

尝试如下。

myTableView.dataSource = self;
myTableView. delegate = self;
于 2013-06-18T14:31:34.230 回答