1

我正在制作一个带有表格视图的应用程序,我希望能够像本地联系人应用程序一样对表格数据进行排序,其中名称的第一个字母与具有相同首字母的所有其他名称进行排序。我正在使用一个可变数组。

这是实现文件中表的代码(这不是文件中的所有代码,只是表中的部分代码):

    - (void)viewDidLoad
{
    [super viewDidLoad];


    self.doctorNames = [NSMutableArray.alloc
                        initWithObjects:@"Aaron Smith", @"Michael Jordan", @"Cormac Chester", @"Marcus Baloutine", @"Joe Schmo", @"Sly James", @"Barack Obama", @"Joe Biden", @"Superman", @"Batman", @"Robin", @"Commissioner Gorden", @"Joseph Gordon Levitt" ,nil];
}

- (NSInteger)tableView:(UITableView *)tableView
 numberOfRowsInSection:(NSInteger)section
{
    if(tableView == self.searchDisplayController.searchResultsTableView)
    {
        return [searchResults count];
    }
    else
    {
        return [self.doctorNames count];
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
    {
        cell = [UITableViewCell.alloc
                initWithStyle:UITableViewCellStyleDefault
                reuseIdentifier:CellIdentifier];
    }
    if (tableView == self.searchDisplayController.searchResultsTableView)
    {
        cell.textLabel.text = [searchResults objectAtIndex:indexPath.row];
    }
    else
    {
        cell.textLabel.text = [doctorNames objectAtIndex:indexPath.row];
    }


    return cell;
}

-(void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
{
    NSPredicate*resultPredicate =[NSPredicate predicateWithFormat:@"SELF contains[cd] %@", searchText];
    searchResults =[doctorNames filteredArrayUsingPredicate:resultPredicate];
}


-(BOOL)searchDisplayController:(UISearchDisplayController *)controller
shouldReloadTableForSearchString:(NSString*)searchString
{
    [self filterContentForSearchText:searchString
    scope:[[self.searchDisplayController.searchBar scopeButtonTitles]
    objectAtIndex:[self.searchDisplayController.searchBar selectedScopeButtonIndex]]];

    return YES;
}
4

2 回答 2

2

您的数据结构设置不正确。您需要一组部分数据。数组的每个元素都应该是一个字典。每个字典都应该有一个用于节标题的键和一个用于该节中的行数组的键。

拥有一个大数组不适合分段表。

于 2013-07-14T16:48:29.027 回答
1

您可以使用它按字母顺序对数组进行排序:

[self.doctorNames sortUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
于 2013-07-14T16:46:30.157 回答