0

我正在使用Justin Driscoll在 Core Data 上的文章 with UIManagedDocument in singleton pattern 为 UITabViewController 设置它。我在模拟器上运行应用程序。它第一次工作正常。数据库创建成功,我可以在 tableview 控制器中看到每个选项卡的数据。但是当我重新启动我的应用程序时,表格视图是空的,因为 NSFetchRequest 为实体获取 0 个匹配项。相同的获取请求在第一次运行期间获取正确的结果。

我认为这与我在模拟器中停止应用程序之前加载数据的异步性质和数据不自动保存有关。所以数据在应用程序的第二次运行中不可用。

如代码所示,我进行数据加载的方式。fetchDataIntoDocument 方法执行数据的初始加载。

// 文档处理单例类

 -(void) performWithDocument:(OnDocumentReady)onDocumentReady {

     void (^OnDocumentDidLoad)(BOOL) = ^(BOOL Success) {
              onDocumentReady(self.document);
     };

    if (![[NSFileManager defaultManager] fileExistsAtPath:[self.document.fileURL path]]) {
        **[self fetchDataIntoDocument:self.document];**  
        [self.document saveToURL:self.document.fileURL forSaveOperation:UIDocumentSaveForCreating completionHandler:OnDocumentDidLoad];
    } else if (self.document.documentState == UIDocumentStateClosed) {
        [self.document openWithCompletionHandler:OnDocumentDidLoad];
    } else if (self.document.documentState == UIDocumentStateNormal) {  
        OnDocumentDidLoad(YES);
    }
 }

 -(void)fetchDataIntoDocument:(UIManagedDocument *)document {

       MyEntityDataController *dc= [[MyEntityDataController alloc] init];
       NSDictionary *entityInfo  =[dc getEntityInfo];
       [document.managedObjectContext performBlock:^{
                 [Entity createEntityWithInfo:entityInfo   inManagedObjectContext:document.managedObjectContext];
       }];
 }

我的 TableViewController 类

 -(void)viewWillAppear:(BOOL)animated {

      [super viewWillAppear:animated];
      if (!self.databaseDocument) {
           [[LTDatabaseDocumentHandler sharedDatabaseDocumentHandler] performWithDocument:^    (UIManagedDocument *document) {
           self.databaseDocument = document;
           [self populateTableViewArrayFromDocument:self.databaseDocument];
           }];
      }
  } 

在 populateTableViewArrayFromDocument 我正在执行我的获取请求

  -(void)populateTableViewArrayFromDocument:(UIManagedDocument *)document
{
       NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Entity2"];
       NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"name" ascending:NO];
     NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];
      [request setSortDescriptors:sortDescriptors];

     NSError *error = nil;
     NSArray *matches = [self.databaseDocument.managedObjectContext  executeFetchRequest:request error:&error];
     NSLog(@" matches count for Entity2 %d", matches.count);
     for (Entity2 *entity2 in matches) {
        //do stuff with data and add it to tableview array
     }
    }
4

1 回答 1

1

我想我已经找到了您遇到此问题的原因。我刚刚遇到这个问题,需要一些研究才能弄清楚。基本上,你是对的。问题确实在于 UIManagedDocument 的异步性质。您需要等到文档加载到内存中,然后再进行提取。

这是我用来确保文档准备就绪的代码:

 if ([[NSFileManager defaultManager] fileExistsAtPath:[_URLDocument path]]) {
        [_managedDocument openWithCompletionHandler:^(BOOL success){
            [self ready]
            if (!success) {
                // Handle the error.
            }
        }];
 } 

希望这会有所帮助,干杯!

于 2013-08-28T21:13:03.297 回答