UIDocumentInteractionController崩溃由Exception Breakpoint捕获

时间:2012-10-17 17:53:56

标签: objective-c ios exception breakpoints uidocumentinteraction

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

我是否需要担心这种行为?

1 个答案:

答案 0 :(得分:0)

如果您没有保留UIDocumentInteractionController对象,那么您将看到崩溃。尝试保留self.docInteractionController。我也遇到了同样的问题,并修复了它。