1

我无法让 NSFetchedResultsController 的部分正常工作。我有一个实体,比如“Employee”和一个字符串属性,比如“name”。现在我想使用 NSFetchedResultsController 在 UITableView 中显示所有员工的姓名......没问题,这是我的代码:

if (_fetchedResultsController == nil) {

    NSManagedObjectContext *moc = [appDelegate managedObjectContext];

    NSFetchRequest *request = [NSFetchRequest new];
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Employee" inManagedObjectContext:moc];
    NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES];

    [request setEntity:entity];
    [request setSortDescriptors:[NSArray arrayWithObject:sortDescriptor]];

    _fetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:request managedObjectContext:moc sectionNameKeyPath:@"name" cacheName:@"root"];

    NSError *error;
    [_fetchedResultsController performFetch:&error];

    if (error != nil) {
        NSLog(@"Error: %@", error.localizedDescription);
    }
}

但是 NSFetchedResultsController 为每个实体创建一个部分。所以当我有 200 名员工时,它会创建 200 个部分。为什么?

以及如何正确实施这些方法:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
   return [[_fetchedResultsController sections] count];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
     // Return the number of rows in the section.
     return [[[_fetchedResultsController sections] objectAtIndex:section] numberOfObjects];
}

- (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];
    }

    // Configure the cell...

    cell.textLabel.text = [[_fetchedResultsController objectAtIndexPath:indexPath] valueForKey:@"name"];

    return cell;
}

我可以把整个概念理解错吗?[_fetchedResultsController section] 和 [_fetchedResultsController sectionIndexTitles] 的区别在哪里?

我希望你能帮助我,并提前感谢!

编辑:我忘了告诉你最重要的事情:我想让部分由“名称”属性的第一个字母分隔。(如音乐应用程序)。

缺口

4

1 回答 1

0

在初始化你的 NSFetchedResultsController 时nil作为你的传递。sectionNameKeyPath

如果您通过name,您基本上会说“请为每个名称创建一个部分”。通过时nil,您告诉它只创建一个部分。

您的 tableview 方法实现对我来说很合适。

[_fetchedResultsController sections]为您提供一个包含对象的数组,您可以询问诸如某个部分中的对象数量之类的内容。相比之下,[_fetchedResultsController sectionIndexTitles]主要是这样您就可以知道NSFetchedResultsController要使用哪个节标题(即,您可以将其设置为一个数组,每个节都有一个字符串)。在你的情况下,你可以忽略它。

于 2013-02-02T17:09:10.923 回答