2012-12-01 60 views
0

我使用名爲vfr的PDF閱讀器來閱讀本地pdf文件。我也嘗試閱讀在線PDF文件,但它沒有奏效。pdf reader在線文件

此代碼:

- (IBAction)didClickOpenPDF { 

    NSString *pdfURL = @"www.ciep.fr/tcf/document/manuel_candidat.PDF"; 
    ReaderDocument *document = [ReaderDocument withDocumentFilePath:pdfURL password:nil]; 

    if (document != nil) 
    { 
     ReaderViewController *readerViewController = [[ReaderViewController alloc] initWithReaderDocument:document]; 
     readerViewController.delegate = self; 

     readerViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve; 
     readerViewController.modalPresentationStyle = UIModalPresentationFullScreen; 

     [self presentModalViewController:readerViewController animated:YES]; 
    } 
} 

Link to ZIP file.

+1

歡迎來到StackOverflow。你想做什麼?它是什麼不起作用?你會收到錯誤消息嗎?你有什麼嘗試?請回答這些問題,以便我們幫助您獲得答案。謝謝。 – phant0m

+0

謝謝你沒有錯誤信息我想我知道如果有解決方案閱讀PDF與這段代碼我嘗試過,但對我來說很困難。我希望你幫我 –

+1

沒有問題在身體...這是太過國際化的IMO - 什麼是ReaderDocument? –

回答

0

您可以進行以下塞納里奧...

1 - Save the file to the local storage 

    2 - read the full path/local url of the downloaded file 

    3 - invoke didClickOpenPDF with the path/local url of the PDF 

我哈德的保存問題,我解決它使用此塞納里奧

相關問題