3

我在我的项目中使用 Core Data 并在以下代码部分中遇到了罕见的崩溃

 -(void) useDocument{
     AFFormsCoreDataEngine* engine = [AFFormsCoreDataEngine sharedInstance];
     if (![[NSFileManager defaultManager] fileExistsAtPath: [engine.formsDatabase.fileURL path]])
     {
         [engine.formsDatabase saveToURL: engine.formsDatabase.fileURL forSaveOperation: UIDocumentSaveForCreating completionHandler: ^(BOOL success){
            // setup
         }];
    }
    else if (engine.formsDatabase.documentState == UIDocumentStateClosed)
    {
        [engine.formsDatabase openWithCompletionHandler: ^(BOOL success){
             // setup
        }];
    }
    else if (engine.formsDatabase.documentState == UIDocumentStateNormal)
    {
         // setup
    }
}

这是崩溃日志所说的:

Last Exception Backtrace:
0   CoreFoundation                  0x371fd88f __exceptionPreprocess + 163
1   libobjc.A.dylib                 0x31272259 objc_exception_throw + 33
2   CoreFoundation                  0x371fd789 +[NSException raise:format:] + 1
3   Foundation                      0x32ce83a3 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 91
4   UIKit                           0x306b3149 -[UIDocument openWithCompletionHandler:] + 173
5   EETECH                          0x00014d23 -[AFFormListViewController useDocument] (AFFormListViewController.m:150)

谁能帮我解决这个问题?它很少发生,但仍然很不愉快

4

2 回答 2

13

如果您的应用程序尝试连续两次调用您的 useDocument 方法,则会发生错误。

因为 openWithCompletionHandler: 是异步打开文档的,所以当再次调用该方法时,文档可能还在打开中。

如果发生这种情况,您的应用程序最终会尝试打开文档两次(因为文档状态将保持 UIDocumentStateClosed 直到完成),这会导致引发异常。

如果您有异常断点,您可能会在控制台中看到类似这样的内容:

 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'attempt to open or a revert document that already has an open or revert operation in flight:
于 2012-09-07T19:15:05.590 回答
2

好吧,UIDocument 代码中的断言失败了。您可能应该提供更多代码,因为您显然设置不正确。

然后断言抛出异常。如果您在此方法中@catch 异常,则可以记录该异常。

或者,您可以将自己的 NSAssertionHandler 分配给线程,并直接查看断言。

于 2012-08-14T00:11:18.250 回答