vfr という PDF リーダーを使用して、ローカルの PDF ファイルを読み取ります。オンラインのpdfファイルも読み込もうとしましたが、うまくいきませんでした。
これはコードです:
- (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];
}
}