您必须首先对数据进行排序并获取每个部分的“键”(A、B、C、D、E)列表。将这些保存为属性上的 NSArray。
实现这个:
// Function to load your data
-(void)dataDidLoad
{
// sort the keys
self.sortedKeysForUsersWithApp = tSortedKeys;
//
[self.tableView reloadData];
}
-(UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
// add a UILabel
headerLabel.text = [self.sortedKeysForUsersWithApp objectAtIndex:section];
// set the text to the section title
}
-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
return [NSArray arrayWithObjects:@"A", @"B", @"C", @"D", @"E", @"F", @"G", @"H", @"I", @"J", @"K", @"L", @"M", @"N", @"O", @"P", @"Q", @"R", @"S", @"T", @"U", @"V", @"W", @"X", @"Y", @"Z", @"#", nil];
}
-(NSInteger)tableView:(UITableView *)tableView sectionForSectionIndexTitle:(NSString *)title atIndex:(NSInteger)index {
//return [self.sortedKeys indexOfObject:title];
return [self.sortedKeysForUsersWithApp indexOfObject:title];
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
//return self.sortedKeys.count;
return self.sortedKeysForUsersWithApp.count;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
NSDictionary *tDictionary = self.sortedUsersWithApp;
//NSString *key = [self.sortedKeys objectAtIndex:section];
NSString *key = [self.sortedKeysForUsersWithApp objectAtIndex:section];
return ((NSArray*)[tDictionary objectForKey:key]).count;
}