1

我目前正在做一个项目,我有 ios 需要显示一个 pdf 文件。但是我想选择要显示的页面。例如,请参阅 UIWebView 中的第 10 页(共 37 页)。我还没有找到一种方法来干净地分离 pfd 的页面。

感谢您的帮助。

4

2 回答 2

9

使用UIWebView's delegate方法来做到这一点:

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
   //Check if file still loading
   if(!webView.isLoading)
   { 
     //now traverse to specific page
     [self performSelector:@selector(traverseInWebViewWithPage) withObject:nil afterDelay:0.1];
   }
}

现在添加以下方法以遍历您的页面。注意需要有效的 PDF 文件路径并提供您想要在 PDF 文件中遍历的有效特定页面。

-(void)traverseInWebViewWithPage
{
   //Get total pages in PDF File ----------- PDF File name here ---------------
   NSString *strPDFFilePath = [[NSBundle mainBundle] pathForResource:@"yourPDFFileNameHere" ofType:@"pdf"];
   NSInteger totalPDFPages = [self getTotalPDFPages:strPDFFilePath];

   //Get total PDF pages height in webView
   CGFloat totalPDFHeight = yourWebViewPDF.scrollView.contentSize.height;
   NSLog ( @"total pdf height: %f", totalPDFHeight);

   //Calculate page height of single PDF page in webView
   NSInteger horizontalPaddingBetweenPages = 10*(totalPDFPages+1);
   CGFloat pageHeight = (totalPDFHeight-horizontalPaddingBetweenPages)/(CGFloat)totalPDFPages;
   NSLog ( @"pdf page height: %f", pageHeight);

   //scroll to specific page --------------- here your page number -----------
   NSInteger specificPageNo = 2;
   if(specificPageNo <= totalPDFPages)
   {
      //calculate offset point in webView
      CGPoint offsetPoint = CGPointMake(0, (10*(specificPageNo-1))+(pageHeight*(specificPageNo-1)));
      //set offset in webView
      [yourWebViewPDF.scrollView setContentOffset:offsetPoint];
   }
}

用于计算 PDF 总页数

-(NSInteger)getTotalPDFPages:(NSString *)strPDFFilePath
{
   NSURL *pdfUrl = [NSURL fileURLWithPath:strPDFFilePath];
   CGPDFDocumentRef document = CGPDFDocumentCreateWithURL((CFURLRef)pdfUrl);
   size_t pageCount = CGPDFDocumentGetNumberOfPages(document);
   return pageCount;
}

享受编码......

于 2015-02-19T08:34:28.690 回答
2

您可以使用 webview 的setContentOffset属性来显示该页面,

[[webView scrollView] setContentOffset:CGPointMake(0,10*pageheight) animated:YES];

其中 pageheight=您的页面高度,10 是您的页面编号,

于 2013-10-03T08:48:59.247 回答