2

我有一个NSManagedObject具有三个属性的:

  1. 标题 ( NSString *)
  2. 标题 ( NSString *)
  3. 最喜欢的 ( BOOL)

我想使用以下方案显示这些对象的列表:

  • 收藏夹
    • 对象 1
    • 对象 3
  • 标题
    • 对象 2
    • 对象 3
  • B 标头
    • 对象 1
    • 对象 4

有什么办法可以做到这一点NSFetchedResultsController吗?我尝试将其排序favoriteheader但无济于事,因为一旦将对象分配给收藏夹部分 - 它就不会显示在其标题部分中。有什么我可以使用的技巧吗?我应该执行两次提取并将结果重新格式化为一个嵌套数组吗?

4

1 回答 1

1

使用两个单独的NSFetchedResultsController's

然后,您需要在各种委托方法中考虑到这一点。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [[self.mainFetchedResultsController sections] count] + 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (section == 0) {
        return [[[self.favFetchedResultsController sections] objectAtIndex:section] numberOfObjects];
    } else {
        return [[[self.mainFetchedResultsController sections] objectAtIndex:section - 1] numberOfObjects];
    }
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{    
    if (section == 0) {
        return @"Favourites";
    } else {
        id <NSFetchedResultsSectionInfo> sectionInfo = [[self.mainFetchedResultsController sections] objectAtIndex:section - 1];
        return [sectionInfo name];
    }
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    Object *object = nil;

    if (indexPath.section == 0) {
        object = [self.favFetchedResultsController objectAtIndexPath:indexPath];
    } else {
        NSIndexPath *mainIndexPath = [NSIndexPath indexPathForRow:indexPath.row inSection:indexPath.section -1];
        object = [self.mainFetchedResultsController objectAtIndexPath:mainIndexPath];
    }

    UITableViewCell *cell = ...

    ...

    return cell;
}
于 2012-05-22T09:08:12.957 回答