核心数据多线程 - 视图控制器不更新

时间:2012-06-25 04:15:08

标签: iphone ios multithreading core-data nsmanagedobjectcontext

我正在尝试在我正在使用的应用中使用Core Data;在app委托中,此代码开始从下载的JSON文件中导入数据。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    //setup app window, etc.

    BECDRefreshOperation *loadData = [[BECDRefreshOperation alloc] initWithStoreCoordinator:self.persistentStoreCoordinator];

    [queue addOperation:loadData]; //queue is an NSOperationQueue

    return YES;

}

BECDRefreshOperation是运行导入的NSOperation的子类。它创建自己的托管对象上下文,以便将主要文件与后台进程分开。

- (id) initWithStoreCoordinator:(NSPersistentStoreCoordinator *)storeCoordinator{
    if (![super init]) return nil;
    [self setPersistentStoreCoord:storeCoordinator];
    return self;
}

- (void) main{
    NSNumberFormatter *f = [[NSNumberFormatter alloc] init];
    [f setNumberStyle:NSNumberFormatterDecimalStyle];

    NSManagedObjectContext *context = [[NSManagedObjectContext alloc] init];

    [context setPersistentStoreCoordinator:self.persistentStoreCoord];

    //import the data from JSON

}

实际导入工作并更新数据存储;但是,使用NSFetchedResultsController的表视图控制器不会更新。表视图控制器是NSFetchedResultsControllerDelegate,包含所有委托方法。

在应用程序的第二次运行中,表视图控制器正确显示,因为数据先前已加载到存储中;但是,导入中所做的任何更新都不会刷新。

我已多次阅读Apple的Core Data Concurrency指南,并在Google和SO上多次搜索以获得答案。我相信它在于使用mergeChangesFromContextDidSaveNotification,但是我试图通过注册保存通知并调用合并更改的方法在app委托和表视图控制器中的许多不同位置执行此操作,而我没有尝试过作品。 Cocoa is my GF's implementation是我为了做到这一点而努力适应的方式之一。

表视图控制器在创建时传递了app delegate的managedObjectContext。

我在没有多线程的情况下运行它,并且导入数据存储并在表视图控制器中显示的代码可以工作,但当然它在导入数据时会冻结UI。

很明显我在这里做错了;任何帮助将不胜感激。

更新 我添加了一些NSLog语句和断点,以查看两个managedObjectContexts是否确实指向相同的内存地址,看起来它们是,而后台MOC位于不同的地址。通知代码似乎应该工作并更新主MOC,但到目前为止它不是。

2012-06-25 21:48:02.669 BE_CoreData[18113:13403] beerListViewController.managedObjectContext = <NSManagedObjectContext: 0x94233d0>
2012-06-25 21:48:02.671 BE_CoreData[18113:13403] appDelegate.managedObjectContext = <NSManagedObjectContext: 0x94233d0>
2012-06-25 21:48:02.722 BE_CoreData[18113:15003] backgroundMOC = <NSManagedObjectContext: 0x7b301b0>

更新2 在进行其他故障排除后,NSFetchedController委托方法似乎未触发。这是NSFetchedResultsController及其委托的代码。

- (NSFetchedResultsController *)fetchedResultsController {

    if (_fetchedResultsController != nil) {
        return _fetchedResultsController;
    }

    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription
                                   entityForName:@"Beer" inManagedObjectContext:self.managedObjectContext];
    [fetchRequest setEntity:entity];

    NSSortDescriptor *sort = [[NSSortDescriptor alloc]
                              initWithKey:@"beertitle" ascending:YES];
    [fetchRequest setSortDescriptors:[NSArray arrayWithObject:sort]];

    [fetchRequest setFetchBatchSize:20];

    NSFetchedResultsController *theFetchedResultsController =
    [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest
                                        managedObjectContext:self.managedObjectContext sectionNameKeyPath:@"beertitle"
                                                   cacheName:@"BeerTable"];
    _fetchedResultsController = theFetchedResultsController;
    _fetchedResultsController.delegate = self;

    return _fetchedResultsController;

}


- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller {
    // The fetch controller is about to start sending change notifications, so prepare the table view for updates.
    [self.tableView beginUpdates];
}


- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type newIndexPath:(NSIndexPath *)newIndexPath {

    switch(type) {

        case NSFetchedResultsChangeInsert:
            [self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
            break;

        case NSFetchedResultsChangeDelete:
            [self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
            break;

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

        case NSFetchedResultsChangeMove:
            [self.tableView deleteRowsAtIndexPaths:[NSArray
                                               arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
            [self.tableView insertRowsAtIndexPaths:[NSArray
                                               arrayWithObject:newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
            break;
    }
}


- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id )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;
    }
}


- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller {
    // The fetch controller has sent all current change notifications, so tell the table view to process all updates.
    [self.tableView endUpdates];
}

此处还有changeCell的代码,在单元格需要更新时调用:

- (void)configureCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {
    Beer *beer = [_fetchedResultsController objectAtIndexPath:indexPath];
    cell.textLabel.text = beer.beertitle;

    if (beer.beerthumb != nil){
        [cell.imageView setImageWithURL:[NSURL URLWithString:beer.beerthumb]
                           placeholderImage:[UIImage imageNamed:@"placeholder.png"]];
    }
    else {
        [cell.imageView setImageWithURL:[NSURL URLWithString:@"http://beersandears.net/images/missing.jpg"] placeholderImage:[UIImage imageNamed:@"placeholder.png"]];
    }

}

最后,viewDidLoad调用fetchBeers方法来实际执行提取。

- (void)fetchBeers{

    NSError *error;
    if (![[self fetchedResultsController] performFetch:&error]) {
        // Update to handle the error appropriately.
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        exit(-1);  // Fail
    }
}

更新3

测试以确保首先进行提取。它确实如此,但不是很多(这是在4S上运行)。

2012-06-28 20:47:37.214 BE_CoreData[3559:907] Fetch called
2012-06-28 20:47:37.281 BE_CoreData[3559:1103] Import started
2012-06-28 20:47:37.285 BE_CoreData[3559:1103] backgroundMOC = <NSManagedObjectContext: 0x1f03f050>
2012-06-28 20:47:39.124 BE_CoreData[3559:1103] call contextDidSave
2012-06-28 20:47:40.926 BE_CoreData[3559:1103] call contextDidSave
2012-06-28 20:47:42.071 BE_CoreData[3559:1103] call contextDidSave
2012-06-28 20:47:45.551 BE_CoreData[3559:1103] call contextDidSave
2012-06-28 20:47:45.554 BE_CoreData[3559:1103] Finished refresh operation

我没有从空白的SQLlite商店开始,而是在一个SQLlite商店播种并运行相同的过程。种子在启动时正确加载,但种子后的更改不会立即显示在表视图中。如果滚动到应该在加载之前添加行的位置(并且它不存在),即使在导入完成后也不会出现。但是,滚动并返回并显示添加的行。似乎当数据库为空时,没有任何内容可以滚动到它,因此不会添加任何内容。使用种子它最终会添加它们,但不是我看到核心数据存储使用动画插入的方式。

1 个答案:

答案 0 :(得分:1)

只要主线程的上下文对于app delegate和视图控制器是相同的,它只是执行合并的设计决策。

合并本身非常简单。

  1. 注册NSManagedObjectContextDidSave通知。
  2. 启动背景操作。
  3. 保存在后台主题。
  4. 在主线程上合并观察者方法中的上下文。
  5. 以下是执行合并的示例代码:

    // Whatever method you registered as an observer to NSManagedObjectContextDidSave
    - (void)contextDidSave:(NSNotification *)notification
    {    
           [self.managedObjectContext performSelectorOnMainThread:@selector(mergeChangesFromContextDidSaveNotification:) withObject:notification waitUntilDone:YES];
    }
    

    请注意,您实际上必须保存在后台线程中才能触发通知。