当我调用UIDocumentInteractionController方法“presentOpenInMenuFromRect:inView:animated:”时,iPad应用程序崩溃

时间:2012-06-07 09:30:56

标签: iphone ios ipad

这是我的代码:在iPad中它崩溃了,列表正在出现,但所选应用程序没有打开。

- (void)openIn:(NSURL *)fileFullPath {
    docController = [UIDocumentInteractionController interactionControllerWithURL:fileFullPath];
    [docController setDelegate:self];

    BOOL isOpen = [docController presentPreviewAnimated:YES];

    if (isOpen == NO) {
        BOOL isOpenIn = [docController presentOpenInMenuFromRect:CGRectMake(300, 300, 100, 100) inView:self.view animated:NO];

        if(isOpenIn == NO) {
            return ;
        }
    }
}

2 个答案:

答案 0 :(得分:3)

根据Lupos的回答,为docController定义一个实例变量修复了你所看到的同一个问题。

我没有足够的声誉评论他的答案。

// In your .h file
@property (nonatomic, strong) UIDocumentInteractionController *docController;

// When calling in your .m
docController = [UIDocumentInteractionController interactionControllerWithURL:fileFullPath];

答案 1 :(得分:2)

如果它仍然相关,则问题可能是UIDocumentInteractionController从内存中释放。尝试将其定义为实例变量。