1

S3 アカウントからダウンロードしている CSV ファイルがあり、Quicklook フレームワークを使用して iOS アプリに表示したいと考えています。

私が得ているエラーは私のコンソールにあります。それは言う

QLPreviewController's datasource shouldn't be nil at this point.

これは、このコード行の実行後に表示されます// Set data source [previewer setDataSource:self];

ファイルをダウンロードして保存し、quicklook でロードするためのすべてのコードを次に示します。

-(void)showDocument
{
    NSString *stringURL = @"http://jornada.s3.amazonaws.com/Dust.csv";
    NSURL  *url = [NSURL URLWithString:stringURL];
    NSData *urlData = [NSData dataWithContentsOfURL:url options:NSDataReadingUncached error:nil];
    if ( urlData )
    {
        NSArray   *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString  *documentsDirectory = [paths objectAtIndex:0];

        NSString  *filePath = [NSString stringWithFormat:@"%@/%@", documentsDirectory,@"tempfile.csv"];

        //[urlData writeToFile:filePath atomically:YES];

        BOOL newFile = [[NSFileManager defaultManager] createFileAtPath:filePath contents:urlData attributes:nil];

        arrayOfDocuments = [[NSArray alloc] initWithObjects:
                            filePath, nil];


        QLPreviewController *previewer = [[QLPreviewController alloc] init];

        [self addSubview:previewer.view];

        // Set data source
        [previewer setDataSource:self];

        // Which item to preview
        [previewer setCurrentPreviewItemIndex:0];
    }

}

/*---------------------------------------------------------------------------
 *
 *--------------------------------------------------------------------------*/
- (NSInteger) numberOfPreviewItemsInPreviewController: (QLPreviewController *) controller
{
    return [arrayOfDocuments count];
}

/*---------------------------------------------------------------------------
 *
 *--------------------------------------------------------------------------*/
- (id <QLPreviewItem>)previewController: (QLPreviewController *)controller previewItemAtIndex:(NSInteger)index
{


    // Break the path into it's components (filename and extension)
    NSArray *fileComponents = [[arrayOfDocuments objectAtIndex: index] componentsSeparatedByString:@"."];

    NSArray *filePaths = [[fileComponents objectAtIndex:0] componentsSeparatedByString:@"/"];

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *filePath = [documentsDirectory stringByAppendingPathComponent:[((NSString *)[filePaths objectAtIndex:[filePaths count]-1]) stringByAppendingString:(NSString*)[fileComponents objectAtIndex:1]]];

    // Use the filename (index 0) and the extension (index 1) to get path

    BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:filePath];


    if (fileExists) {
        //
    }
    return [NSURL fileURLWithPath:filePath isDirectory:NO];
}
4

1 に答える 1