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];
}
}
歡迎來到StackOverflow。你想做什麼?它是什麼不起作用?你會收到錯誤消息嗎?你有什麼嘗試?請回答這些問題,以便我們幫助您獲得答案。謝謝。 – phant0m
謝謝你沒有錯誤信息我想我知道如果有解決方案閱讀PDF與這段代碼我嘗試過,但對我來說很困難。我希望你幫我 –
沒有問題在身體...這是太過國際化的IMO - 什麼是ReaderDocument? –