我正在尝试实现一个带有搜索功能的表格视图。我有一个函数可以查看每个项目的第一个字母。然后对于每个唯一的字母,它将它添加到另一个数组中。因此,如果它们是内部以 'S' 开头的项目,它只会添加一次字母 'S' 。
然后使用这个数组,我将构建我的部分和 rowsForSections。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
int rows = 0;
if (tableView == self.searchDisplayController.searchResultsTableView)
{
//---get the letter in each section; e.g., A, B, C, etc.---
NSString *alphabet = [firstIndex objectAtIndex:section];
//---get all states beginning with the letter---
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF.name beginswith[c] %@", alphabet];
NSArray *names = [self.filteredListContent filteredArrayUsingPredicate:predicate];
//---return the number of states beginning with the letter---
rows = [names count];
}
else
{
//---get the letter in each section; e.g., A, B, C, etc.---
NSString *alphabet = [firstIndex objectAtIndex:section];
//---get all states beginning with the letter---
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF.name beginswith[c] %@", alphabet];
NSArray *names = [self.listContent filteredArrayUsingPredicate:predicate];
//---return the number of states beginning with the letter---
rows = [names count];
}
return rows;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
int rows = 0;
if (tableView == self.searchDisplayController.searchResultsTableView)
{
rows = [filteredFirstIndex count];
}
else
{
rows = [firstIndex count];
}
return rows;
}
这是我的 CellForRowAtIndex
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"list content %@",[listContent valueForKey:@"name"]);
static NSString *kCellID = @"cellID";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kCellID];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:kCellID];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
/*
If the requesting table view is the search display controller's table view, configure the cell using the filtered content, otherwise use the main list.
*/
Contact *contact = nil;
if (tableView == self.searchDisplayController.searchResultsTableView)
{
contact = [self.filteredListContent objectAtIndex:indexPath.row];
}
else
{
contact = [self.listContent objectAtIndex:indexPath.row];
}
cell.textLabel.text = contact.name;
return cell;
}
问题 这是我的问题的屏幕截图。因为一张图片可以说超过 1000 个单词。
希望任何人都可以帮助我!
亲切的问候!