带有UIsearchBarController的ios7崩溃了吗?

时间:2014-01-10 14:34:29

标签: objective-c ios5 ios6 ios7 xcode5

我正在使用ios7。 在我的应用程序中,我有UITableView和UISearchBar控制器。 在实现UISearchBar控制器时,我的应用程序崩溃了 由于以下原因:

由于未捕获的异常'NSInternalInconsistencyException'而终止应用程序,原因:'无法使用标识符listcell对单元格进行出列 - 必须为标识符注册nib或类或在故事板中连接原型单元格

我正在使用自定义UITabelViewCell.UISearchBarController委托方法也已实现。

任何人都可以为我提供更好的链接或解决方案吗?

以下是我的代码:

// ----------------------搜索部分的代码------------------ < / p>

-(void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
{ 
NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"SELF Contains[cd] %@",searchText];

    searchResults = [_detailList filteredArrayUsingPredicate:resultPredicate];
}


-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
    [self filterContentForSearchText:searchString scope:[[self.searchDisplayController.searchBar scopeButtonTitles]objectAtIndex:[self.searchDisplayController.searchBar selectedScopeButtonIndex]]];
    return YES;
}



-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

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


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"listcell";
//
   ListCell *listcell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];


        listcell.lbl_detail.text = _detailList [indexPath.row];
    listcell.lbl_Address.text = _detailList1 [indexPath.row];
    listcell.lbl_link.text = _detailList2 [indexPath.row];
    listcell.lbl_number.text = _detailList3 [indexPath.row];


    return listcell;

}


-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{    
[(ContainerViewController *)self.parentViewController addDetailViewController];
}

由于

1 个答案:

答案 0 :(得分:0)

您应该在方法viewDidLoad中添加以下行:

[self.searchDisplayController.searchBar registerClass:[ListCell class] forCellReuseIdentifier:@&#34; listcell&#34;];