UIDocument openWithCompletionHandler: crash

独自空忆成欢 提交于 2019-11-29 11:30:28

The error occurs if your app attempts to call your useDocument method twice in close succession.

Because the openWithCompletionHandler: opens the document asynchronously, the document may still be opening when the method is called again.

If this happens, your app ends up trying to open the document twice (as the document state will remain UIDocumentStateClosed until completion) and this causes the exception to be thrown.

If you have an exception breakpoint, you may see something like this in the console:

 *** 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:

Well, an assertion is failing in the UIDocument code. You should probably provide more code, because you are obviously setting something up improperly.

The assertion is then throwing an exception. If you @catch exceptions in this method, you can log the exception.

Or, you can assign your own NSAssertionHandler to the thread, and see the assertion directly.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!