0

我正在使用 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 文档交互时发生了很多崩溃。该应用程序并没有完全崩溃,但是每当我点击文档时都会触发异常断点。

我需要担心这种行为吗?

4

1 回答 1

0

如果您没有保留 UIDocumentInteractionController 对象,那么您将看到崩溃。尽量保留 self.docInteractionController。我也遇到了同样的问题,这解决了它。

于 2013-01-16T18:18:41.850 回答