0

我正在尝试实现一个带有搜索功能的表格视图。我有一个函数可以查看每个项目的第一个字母。然后对于每个唯一的字母,它将它添加到另一个数组中。因此,如果它们是内部以 '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 个单词。

在此处输入图像描述

希望任何人都可以帮助我!

亲切的问候!

4

1 回答 1

0

这些行提出了问题:

    contact = [self.filteredListContent objectAtIndex:indexPath.row];

    contact = [self.listContent objectAtIndex:indexPath.row];

因为您在部分中显示名称。

在每个部分中,indexPath.row值从 0 开始。

这就是为什么你会得到这个结果。

以下不是一个好的解决方案。但举个例子,我发布它。(这会导致性能问题)在你的cellForRowAtIndexPath

NSString *alphabet = [firstIndex objectAtIndex:indexPath.section];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF.name beginswith[c] %@", alphabet];
NSArray *names = [self.filteredListContent filteredArrayUsingPredicate:predicate];
contact = [names objectAtIndex:indexPath.row];
于 2012-12-26T10:39:58.093 回答