我正在创建一个带有表格视图的应用程序,我希望能够对表格数据进行排序,例如本地联系人应用程序,其中名称的第一个字母与具有相同首字母的所有其他名称一起排序。我正在使用一个可变阵列。
以下是实现文件中Table的代码(这不是文件中的所有代码,只是表中的部分代码):
- (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;
}
答案 0 :(得分:2)
您的数据结构设置不正确。您需要一组截面数据。数组的每个元素都应该是字典。每个字典都应该有一个用于节标题的键和一个用于该节中行数组的键。
有一个大数组不适合分段表。
答案 1 :(得分:1)
您可以使用它按字母顺序对数组进行排序:
[self.doctorNames sortUsingSelector:@selector(localizedCaseInsensitiveCompare:)];