皆さんこんにちは
私はこのように私のプロジェクトに2つの配列を持っています
- (void)viewDidLoad
{
[super viewDidLoad];
deviceName = [[NSArray alloc] initWithObjects: @"iPhone", @"Galaxy", @"iPad", @"iMac", @"HTC One", nil];
companyName = [[NSArray alloc] initWithObjects:@"Apple", @"Samsung", @"Apple", @"Apple", @"HTC", nil];
}
そして、私はこのコードを使用してセルを変更しています..
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if (tableView == self.searchDisplayController.searchResultsTableView) {
return [searchResult count];
} else {
return [deviceName count];
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *identifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier] autorelease];
}
if ([self.searchDisplayController isActive]) {
NSString *name = [searchResult objectAtIndex:indexPath.row];
NSString *company = [companyName objectAtIndex:indexPath.row];
cell.textLabel.text = [NSString stringWithFormat:@"%@ - %@", name, company];
} else {
NSString *name = [deviceName objectAtIndex:indexPath.row];
NSString *company = [companyName objectAtIndex:indexPath.row];
cell.textLabel.text = [NSString stringWithFormat:@"%@ - %@", name, company];
}
return cell;
}
そして、私はこのコードを使用して検索しています..
#pragma mark - UISearchDisplayController delegate methods
- (void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
{
NSPredicate *resultPredicate = [NSPredicate
predicateWithFormat:@"SELF contains[cd] %@",
searchText];
[searchResult release];
searchResult = [[deviceName filteredArrayUsingPredicate:resultPredicate]retain];
}
-(BOOL)searchDisplayController:(UISearchDisplayController *)controller shouldReloadTableForSearchString:(NSString *)searchString
{
[self filterContentForSearchText:searchString
scope:[[self.searchDisplayController.searchBar scopeButtonTitles]
objectAtIndex:[self.searchDisplayController.searchBar
selectedScopeButtonIndex]]];
return YES;
}
最初はセルはこのように問題ありません
cell1 - iPhone - Apple
cell2- ギャラクシー - サマウン
...
「htc」を検索すると、検索は正常に機能しますが、セルは次のようになります
cell1- HTC One - アップル
...
それを修正するために何ができますか?