CoreData:重新加载数据返回UITableView之前

时间:2015-03-06 01:01:51

标签: ios swift core-data

我知道核心数据与UITableViewController非常相关,但是我有一个应用程序,它有两个页面,您可以更新数据,如果我能看到每页的相关标签中反映的更新值,那将是很好的必须返回UITableViewController并使用tableView.reloadData()。有没有办法实现这个目标? 谢谢

编辑:我已经添加了一个图表,我希望这个图表能让我的问题更加清晰。我想在视图D中对托管对象进行更新,我可以确认(通过println)已经按预期工作,但是当我使用poptoViewController C时,没有任何改变,我看到过时的信息。只有当我返回到桌面视图A时,才会在UI中对对象进行更改。那么我有没有办法在视图C上重新加载对象而不必回到A?

编辑#2:阅读下面的回复(谢谢!)后,我认为我的问题归结为如何在没有UITableView的ViewController上实现NSFetchedResultsController的功能?

enter image description here

2 个答案:

答案 0 :(得分:5)

NSFetchedResultsController几乎免费提供此功能。实施NSFetchedResultsControllerDelegate并设置frc.delegate = self。在Core Data中进行更改时,将调用适当的委托方法

下面的代码是来自Xcode为您设置的iOS Master / Detail Core Data模板的样板。要获得所有这些的副本,请转到文件 - >新 - >项目 - >主细节应用 - >然后检查"使用核心数据"。

<强>夫特

func controllerWillChangeContent(controller: NSFetchedResultsController) {
    self.tableView.beginUpdates()
}

func controller(controller: NSFetchedResultsController, didChangeSection sectionInfo: NSFetchedResultsSectionInfo, atIndex sectionIndex: Int, forChangeType type: NSFetchedResultsChangeType) {
    switch type {
        case .Insert:
            self.tableView.insertSections(NSIndexSet(index: sectionIndex), withRowAnimation: .Fade)
        case .Delete:
            self.tableView.deleteSections(NSIndexSet(index: sectionIndex), withRowAnimation: .Fade)
        default:
            return
    }
}

func controller(controller: NSFetchedResultsController, didChangeObject anObject: AnyObject, atIndexPath indexPath: NSIndexPath?, forChangeType type: NSFetchedResultsChangeType, newIndexPath: NSIndexPath?) {
    switch type {
        case .Insert:
            tableView.insertRowsAtIndexPaths([newIndexPath!], withRowAnimation: .Fade)
        case .Delete:
            tableView.deleteRowsAtIndexPaths([indexPath!], withRowAnimation: .Fade)
        case .Update:
            self.configureCell(tableView.cellForRowAtIndexPath(indexPath!)!, atIndexPath: indexPath!)
        case .Move:
            tableView.deleteRowsAtIndexPaths([indexPath!], withRowAnimation: .Fade)
            tableView.insertRowsAtIndexPaths([newIndexPath!], withRowAnimation: .Fade)
        default:
            return
    }
}

func controllerDidChangeContent(controller: NSFetchedResultsController) {
    self.tableView.endUpdates()
}

<强>目标C

- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller
{
    [self.tableView beginUpdates];
}

- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo
           atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type
{
    switch(type) {
        case NSFetchedResultsChangeInsert:
            [self.tableView insertSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade];
            break;

        case NSFetchedResultsChangeDelete:
            [self.tableView deleteSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade];
            break;

        default:
            return;
    }
}

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

    switch(type) {
        case NSFetchedResultsChangeInsert:
            [tableView insertRowsAtIndexPaths:@[newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
            break;

        case NSFetchedResultsChangeDelete:
            [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
            break;

        case NSFetchedResultsChangeUpdate:
            [self configureCell:[tableView cellForRowAtIndexPath:indexPath] atIndexPath:indexPath];
            break;

        case NSFetchedResultsChangeMove:
            [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
            [tableView insertRowsAtIndexPaths:@[newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
            break;
    }
}

- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller
{
    [self.tableView endUpdates];
}

答案 1 :(得分:0)

问你的问题:

  

如何实现NSFetchedResultsController的功能   一个没有UITableView的ViewController?

您的ViewController应订阅NSManagedObjectContextDidSaveNotification通知。查看通知的userInfo并处理密钥updatedObjectsinsertedObjectsdeletedObjects。 当您的ViewController感兴趣任何对象时,请更新视图。

此处is an example