当NSFetchedResultsController添加新记录时,如何阻止向上滚动UITableView?

时间:2015-10-08 09:44:34

标签: ios swift uitableview nsfetchedresultscontroller

一旦我向CoreData添加新评论,我的UITableView就会向上滚动。 NSFetchedResultsController知道它,将此注释放在表的底部,并将表滚动到顶部。这是正常的吗?

我的例子:

在我添加评论之前:

enter image description here

在我添加评论(不是预期的行为)之后:

enter image description here

它应该是这样的(手动轻扫后):

enter image description here

这可能与以下情​​况有关:

  1. 这是我的NSFetchedResultsController

    的排序描述符
    NSSortDescriptor(key: "createdAt", ascending: false) //from the latest to the oldest
    
  2. 但我需要显示反向索引路径的注释(最新版本位于最底层)。换句话说,无论何时我需要使用indexPath,我都会使用:

    private func reversedIndexPathForIndexPath(indexPath: NSIndexPath) -> NSIndexPath {
        return NSIndexPath(forRow: fetchedResultsController.fetchedObjects!.count - indexPath.row - 1, inSection: 0)
    }
    
  3. NSFetchedResultsControllerDelegate

    //MARK: - NSFetchedResultsControllerDelegate
    
    func controllerWillChangeContent(controller: NSFetchedResultsController) {
        self.tableView.beginUpdates()
    }
    
    func controller(controller: NSFetchedResultsController, didChangeObject anObject: AnyObject, atIndexPath indexPath: NSIndexPath?, forChangeType type: NSFetchedResultsChangeType, newIndexPath: NSIndexPath?) {
    
        switch type {
        case .Insert:
            if let newIndexPath = newIndexPath {
                tableView.insertRowsAtIndexPaths([reversedIndexPathForIndexPath(newIndexPath)], withRowAnimation: .Fade)
            }
        case .Delete:
            if let indexPath = indexPath {
                tableView.deleteRowsAtIndexPaths([reversedIndexPathForIndexPath(indexPath)], withRowAnimation: .Fade)
            }
        case .Update:
            if let indexPath = indexPath {
                tableView.reloadRowsAtIndexPaths([reversedIndexPathForIndexPath(indexPath)], withRowAnimation: .Fade)
            }
        case .Move:
            if let indexPath = indexPath, let newIndexPath = newIndexPath {
                tableView.deleteRowsAtIndexPaths([reversedIndexPathForIndexPath(indexPath)], withRowAnimation: .Fade)
                tableView.insertRowsAtIndexPaths([reversedIndexPathForIndexPath(newIndexPath)], withRowAnimation: .Fade)
            }
        }
    }
    
    func controllerDidChangeContent(controller: NSFetchedResultsController) {
        tableView.endUpdates()
    }
    

    它与我的问题有关吗?

2 个答案:

答案 0 :(得分:6)

编辑回答:

我能够通过以下步骤重现这个故障:

  1. UITableView,其rowHeight设置为UITableViewAutomaticDimension且非零estimatedRowHeight
  2. 表格滚动到最底部,最后一个单元格在底部边缘完全可见。
  3. 将新单元格插入到最后一个单元格下方会导致单元格向下移动几个点(在我的设置中它从5到40不等)。
  4. 此行为的来源需要进一步调查。

    目前唯一的解决方案是不使用UITableViewAutomaticDimension并从tableView:heightForRowAtIndexPath:返回行高。

    顺便说一句,反向索引路径的实现有一个重大缺陷。当FRC调用它的委托方法controller:didChangeObject:atIndexPath:forChangeType:newIndexPath:时,所有删除索引路径都属于更改前的数据集,而所有插入索引路径都属于更改后的路径。如果你在controllerWillChangeContent:controllerDidChangeContent:之间,fetchedResultsController.fetchedObjects将包含更改后的数据集,我想(但需要进行检查)。

答案 1 :(得分:3)

我找到了对我有用的东西。 我遇到了同样的问题,我的estimatedRowHeight是33,我的所有单元都大于33。

我刚刚将estimatedRowHeight更改为最大细胞高度(或大于最大细胞高度)

    self.table.estimatedRowHeight = 310
    self.table.rowHeight = UITableViewAutomaticDimension

像魅力一样工作,所有单元格现在都是自动调整的,当核心数据执行更新/删除/插入时,uitableview不会滚动到顶部或底部