私はuitableviewとsearchDisplayControllerを備えた検索バーを持っており、テーブルビューデータソースにデータベースからのデータを入力し、検索用のユーザー検索バーを使用しています。データソースをフィルタリングし、セルを選択した場合、didSelectRowAtIndexPathメソッドは起動しません。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
KardexViewController* kardexViewController = [[KardexViewController alloc] initWithStyle:UITableViewStylePlain];
[self.navigationController pushViewController:kardexViewController animated:YES];
}
これは私がuisearchbarを追加する方法です
- (void)viewDidLoad
{
[super viewDidLoad];
dataSource = [[NSMutableArray alloc] init];
self.navigationItem.title = Title;
searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];
searchDisplayController.delegate = self;
searchDisplayController.searchResultsDataSource = self;
self.tableView.tableHeaderView = searchBar;
}
データソースをフィルタリングする方法
- (BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
NSMutableArray* result = [[NSMutableArray alloc] init];
for (int i = 0; i < [self.allData count]; i++) {
NSRange range = [[[self.allData objectAtIndex:i] valueForKey:@"Code"] rangeOfString:searchString];
if(range.length > 0)
[result addObject:[self.allData objectAtIndex:i]];
range = [[[self.allData objectAtIndex:i] valueForKey:@"Name"] rangeOfString:searchString];
if(range.length > 0)
[result addObject:[self.allData objectAtIndex:i]];
}
self.dataSource = [result copy];
[result release];
[self.searchDisplayController.searchResultsTableView reloadData];
return YES;
}
-(void) searchDisplayControllerDidEndSearch:(UISearchDisplayController *)controller
{
self.dataSource = [self.allData copy];
}
よろしくお願いします