2

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

- (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 ;
        }
    }
}
4

2 回答 2

3

根据 Lupos 的回答,为我的 docController 定义一个实例变量解决了您所看到的相同问题。

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

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

// When calling in your .m
docController = [UIDocumentInteractionController interactionControllerWithURL:fileFullPath];
于 2012-10-23T22:21:18.970 回答
2

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

于 2012-10-14T15:45:06.867 回答