我想实现类似iPhone的联系人列表。我知道有一个地址簿框架允许我访问设备的联系人,但我想使用我自己的核心数据库中存储的联系人。
我正在使用NSFetchedResultsController
在表格视图中获取并列出我的联系人。
但是,我似乎找不到让NSFetchedResultsController
显示按部分组织的联系人的方法,每个部分都是每个联系人姓名的第一个字母。像:
Section A: All contacts that start with the letter A
Section B: All contacts that start with the letter B
etc...
我认为我可以使用sectionNameKeyPath:
init
方法中的NSFetchedResultsController
参数执行此操作,但我应该如何使用它来实现目标?
答案 0 :(得分:1)
您必须先对数据进行排序,并获取每个部分的“键”(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;
}