我怎么知道UIDocumentInteractionController无法打开文件?

时间:2017-04-06 14:05:53

标签: uidocumentinteraction

UIDocumentInteractionController *documentVc = [UIDocumentInteractionController interactionControllerWithURL:fileURL];

documentVc.delegate = self;

if (![documentVc respondsToSelector:@selector(presentPreviewAnimated:)]) {
     NSLog(@"can not open this file");
} else {
    [documentVc presentPreviewAnimated:YES];
}
当UIDocumentInteractionController无法打开文件时,我想知道如何提示用户,该文件无法打开。任何想法?

我的代码无效。

1 个答案:

答案 0 :(得分:0)

[documentVc presentPreviewAnimated:YES]

此方法有一个返回值,用于指示文件是否能够显示。