QLPreviewController加载mainBundle文件不显示问题 Couldn't issue file extension for url:

Posted chao-ya

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QLPreviewController加载mainBundle文件不显示问题 Couldn't issue file extension for url:相关的知识,希望对你有一定的参考价值。

需要把文件copy到沙盒中再显示

 

 

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

    

    NSString *docDir = [paths objectAtIndex:0];

NSString *path = [docDir stringByAppendingPathComponent:@"222.pdf"];

    NSString *path2 = [[NSBundle mainBundle] pathForResource:@"222.pdf" ofType:nil];

    BOOL filesPresent = [self copyMissingFile:path2 toPath:docDir];

    if (filesPresent) {

        NSLog(@"OK");

    }

    else

    {

        NSLog(@"NO");

    }

 

- (BOOL)copyMissingFile:(NSString *)sourcePath toPath:(NSString *)toPath

{

    BOOL retVal = YES; // If the file already exists, we‘ll return success…

    NSString * finalLocation = [toPath stringByAppendingPathComponent:[sourcePath lastPathComponent]];

    if (![[NSFileManager defaultManager] fileExistsAtPath:finalLocation])

    {

        retVal = [[NSFileManager defaultManager] copyItemAtPath:sourcePath toPath:finalLocation error:NULL];

    }

    return retVal;

}

 

以上是关于QLPreviewController加载mainBundle文件不显示问题 Couldn't issue file extension for url:的主要内容,如果未能解决你的问题,请参考以下文章

QLPreviewController 在 iOS 6 中不起作用

Xamarin QLPreviewController + NavigationPage 在 iOS 10 上损坏

在 QLPreviewController 中更改导航栏颜色

以 Core Data 为数据源的 QLPreviewController

iOS7 QLPreviewController 改变导航栏颜色?

在 QLPreviewController 中禁用复制操作