소스 검색

PDFTools(iOS) - Fixed 18033 【form】添加Push Button,页码填写3,实际跳转页码4

chenyu 1 년 전
부모
커밋
33b9956a38
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      compdfkit-tools/compdfkit-tools/Annotation/PDFProperties/PDFLink/CPDFFormLinkViewController.m

+ 1 - 1
compdfkit-tools/compdfkit-tools/Annotation/PDFProperties/PDFLink/CPDFFormLinkViewController.m

@@ -361,7 +361,7 @@
             CPDFURLAction * urlAction = [[CPDFURLAction alloc] initWithURL:string];
             [mAnnotation setAction:urlAction];
         }else if(self.linkType == CPDFFormLinkTypePage){
-            CPDFDestination * destination = [[CPDFDestination alloc] initWithDocument:mAnnotation.page.document pageIndex:[string intValue]];
+            CPDFDestination * destination = [[CPDFDestination alloc] initWithDocument:mAnnotation.page.document pageIndex:[string intValue] - 1];
             CPDFGoToAction * goToAction = [[CPDFGoToAction alloc] initWithDestination:destination];
             [mAnnotation setAction:goToAction];
         }