0

我想实现类似于 iPhone 的联系人列表的东西。我知道有一个地址簿框架允许我访问设备的联系人,但我想使用存储在我的核心数据数据库中的我自己的联系人。

我正在使用NSFetchedResultsController在表格视图中获取和列出我的联系人。

但是,我似乎找不到一种方法来NSFetchedResultsController显示按部分组织的联系人,每个部分都是每个联系人姓名的第一个字母。喜欢:

Section A: All contacts that start with the letter A
Section B: All contacts that start with the letter B
etc...

我认为我可以使用for 方法中的sectionNameKeyPath:参数来做到这一点,但是我应该如何使用它来达到我的目的呢?initNSFetchedResultsController

4

1 回答 1

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;
}
于 2012-05-06T16:48:25.353 回答