我正在使用 UIDocumentInteractionController 来预览 pdf 文件。我显示控制器如下:
self.docInteractionController = [UIDocumentInteractionController interactionControllerWithURL:pdfUrl];
self.docInteractionController.delegate = self;
self.docInteractionController.name = literature.title;
[self.docInteractionController presentPreviewAnimated:YES];
这一切都是一种享受。但是,如果我向 Xcode 添加一个 Exception Breakpoint catch-all 并调试应用程序,那么我会注意到在我与 pdf 文档交互时发生了很多崩溃。该应用程序并没有完全崩溃,但是每当我点击文档时都会触发异常断点。
我需要担心这种行为吗?