Я реализовал панель поиска (и контроллер отображения) в uitableview, используя приведенный ниже код. Когда я печатаю текстовое поле поиска, я получаю следующую ошибку sigabrt:UitableView Search Text Sigbart Error - ios
Завершение приложения из-за неотображенного исключения «NSUnknownKeyException», причина: '[valueForUndefinedKey:]: этот класс не является ключевым значением, совместимым с кодировкой для имени ключа «.
Я пересматривал учебное пособие, которое я выполнял, и четырехкратно проверял код, однако я не могу найти причину ошибки, может ли кто-нибудь помочь?
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (tableView == self.searchDisplayController.searchResultsTableView) {
return [self.searchResults count];
} else {
return _restaurantsInCity.count;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"RestaurantCell";
UITableViewCell *cell = [_tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
RestarauntEntity *currentRestaurant = nil;
if (tableView == self.searchDisplayController.searchResultsTableView) {
currentRestaurant = [[self.searchResults objectAtIndex:indexPath.row]];
} else {
currentRestaurant = [self.restaurantsInCity objectAtIndex:indexPath.row];
}
NSString *decodedText1 = [currentRestaurant.title stringByReplacingOccurrencesOfString:@"’" withString:@"'"];
NSString *decodedText = [decodedText1 stringByReplacingOccurrencesOfString:@"&" withString:@"&"];
cell.textLabel.text = decodedText;
cell.textLabel.font = [UIFont fontWithName:@"avenir" size:16.0f];
cell.textLabel.textColor=[UIColor blackColor];
cell.detailTextLabel.text = currentRestaurant.city;
cell.detailTextLabel.font = [UIFont fontWithName:@"avenir" size:12.0f];
cell.detailTextLabel.textColor=[UIColor darkGrayColor];
return cell;
}
- (void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
{
NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"name contains[cd] %@", searchText];
searchResults = [_restaurantsInCity filteredArrayUsingPredicate:resultPredicate];
}
-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
[self filterContentForSearchText:searchString
scope:[[self.searchDisplayController.searchBar scopeButtonTitles]
objectAtIndex:[self.searchDisplayController.searchBar
selectedScopeButtonIndex]]];
return YES;
}
Попытка создавая контрольную точку исключения, а также позволяя объектам-зомби объектив-c получить лучшую картину при сбое. –