15

我有一个使用标准 NSFetchedResultsController 填充的 UITableView。但是我想在前面加上一行或一节(最好是一行,但两者都可以正常工作。)

我现在可能看到这样做的唯一方法是在处理处理来自 NSFetchedResultsController 的数据的部分/行时手动重写所有 NSIndexPath,以欺骗它查看索引 0 处的部分并从索引 0 处的行开始。然而,这似乎是一个非常糟糕的主意,很快就会变得混乱,所以我希望避免这种情况。

一个很好的例子是当你第一次启动官方 Twitter 应用程序时,我会引导你从你的朋友列表中添加一些人。

Twitter 应用程序建议页面的屏幕截图,突出显示相关部分

红色部分几乎是我想要实现的,我假设黄色部分是同一部分中 NSFetchedResultsController 的结果(尽管使用他们的自定义样式,它可能是一个单独的部分。)

4

2 回答 2

33

这可以以相当干净的方式完成。

我假设您从使用 Apple 示例代码的标准 NSFetchResultsController 设置的标准 tableview 开始。

首先,您需要两个实用功能:

- (NSIndexPath *)mapIndexPathFromFetchResultsController:(NSIndexPath *)indexPath
{
    if (indexPath.section == 0)
        indexPath = [NSIndexPath indexPathForRow:indexPath.row+1 inSection:indexPath.section];

    return indexPath;
}

- (NSIndexPath *)mapIndexPathToFetchResultsController:(NSIndexPath *)indexPath
{
    if (indexPath.section == 0)
        indexPath = [NSIndexPath indexPathForRow:indexPath.row-1 inSection:indexPath.section];

    return indexPath;
}

这些应该是相当不言自明的——当我们想使用来自获取的结果控制器的索引路径来访问表时,它们只是处理添加额外行的帮助程序,或者在采用其他方式时删除它。

然后我们需要创建额外的单元格:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"MyCellId";

    if (indexPath.section == 0 && indexPath.row == 0)
    {
        UITableViewCell *cell;
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil] autorelease];
        cell.selectionStyle = UITableViewCellSelectionStyleGray;
        cell.textLabel.text = NSLocalizedString(@"Extra cell text", nil);

        return cell;
    }

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil] autorelease];
    }

    [self configureCell:cell atIndexPath:indexPath];

    return cell;
}

确保我们正确配置它(configurecell 只会为来自 fetch results 控制器的单元格调用):

// the indexPath parameter here is the one for the table; ie. it's offset from the fetched result controller's indexes
- (void)configureCell:(SyncListViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
    indexPath = [self mapIndexPathToFetchResultsController:indexPath];

    id *obj = [fetchedResultsController objectAtIndexPath:indexPath];
    <... perform normal cell setup ...>
}

并告诉它存在的tableview:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    NSInteger numberOfRows = 0;

    if ([[fetchedResultsController sections] count] > 0) {
        id <NSFetchedResultsSectionInfo> sectionInfo = [[fetchedResultsController sections] objectAtIndex:section];
        numberOfRows = [sectionInfo numberOfObjects];
    }

    if (section == 0)
        numberOfRows++;

    return numberOfRows;
}

并响应选择:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    if (indexPath.section == 0 && indexPath.row == 0)
    {
        [self doExtraAction];
        return;
    }

    ... deal with selection for other cells ...

然后重新映射我们从结果控制器获得的任何更新:

- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type newIndexPath:(NSIndexPath *)newIndexPath {
    UITableView *tableView = self.tableView;

    indexPath = [self mapIndexPathFromFetchResultsController:indexPath];
    newIndexPath = [self mapIndexPathFromFetchResultsController:newIndexPath];

    switch(type) {
        ... handle as normal ...
于 2012-08-09T07:42:05.480 回答
3

我理解您对复杂性的担忧,但实际上只是在 in 中numberOfRowsInSection:加 1 和加 1 (除了为第 0 行添加代码之外)。indexPath.rowcellForRowAtIndexPath:

另一种解决方案不必非常复杂就变得更加麻烦。

话虽如此,您提出的“标题”似乎确实是section header的典型候选者。

于 2012-06-10T00:18:26.123 回答