UIDocumentInteractionController *documentVc = [UIDocumentInteractionController interactionControllerWithURL:fileURL];
documentVc.delegate = self;
if (![documentVc respondsToSelector:@selector(presentPreviewAnimated:)]) {
NSLog(@"can not open this file");
} else {
[documentVc presentPreviewAnimated:YES];
}
当UIDocumentInteractionController无法打开文件时,我想知道如何提示用户,该文件无法打开。任何想法?
我的代码无效。
答案 0 :(得分:0)
[documentVc presentPreviewAnimated:YES]
此方法有一个返回值,用于指示文件是否能够显示。