菜鸟教程小白 发表于 2022-12-13 09:07:26

objective-c - 如何在 UIWebView 中跳转 pdf 页面?


                                            <p><p>我正在尝试逐页滚动 pdf 文件</p>

<p>这是我的代码</p>

<pre><code>-(void)viewDidLoad{

NSString *path = [ pathForResource:@&#34;myPdffile&#34; ofType:@&#34;pdf&#34;];

NSURL *url = ;

NSURLRequest *urlrequest = ;

;

webview.scalesPageToFit = YES;

;

}

//goto next page

-(IBAction)nextpage{

      ;
}

//goto previous page

-(IBAction)prevpage {

       ?????
}
</code></pre>

<p>我应该在 <code>stringByEvaluatingJavaScriptFromString</code> 之后放什么?</p>

<p>我是否将相同的代码放在“prevpage”中?</p>

<p>谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 iOS 5 中可以使用该语句进行页面跳转</p>

<pre><code>[ setContentOffset:CGPointMake(0,y) animated:YES];
</code></pre>

<p>在iOS 5以下你可以使用这个语句</p>

<pre><code>];
</code></pre>

<p>y 是你要跳跃的高度。</p>

<p>我正在为下一页和上一页编写一些示例代码</p>

<pre><code>-(IBAction) nextPage: (id) sender
{
    if (currentPage &lt; numberOfPages)
    {
      float y =pageHeight * currentPage++;

      if (isIOSAbove4)
      {
            [ setContentOffset:CGPointMake(0,y) animated:YES];
      }
      else
      {
            ];
      }
    }
}
</code></pre>

<p>上一页:</p>

<pre><code>-(IBAction) prevPage: (id) sender
{   
    if (currentPage - 1)
    {
      float y = --currentPage * pageHeight - pageHeight;
      if (isIOSAbove4)
      {
            [ setContentOffset:CGPointMake(0,y) animated:YES];
      }
      else
      {
            ];
      }
    }
}
</code></pre>

<p>在上面的示例代码中是IOSAbove4是在pch文件中定义的</p>

<pre><code>#define isIOSAbove4 ([[ systemVersion] floatValue] &gt;= 5.0)
</code></pre>

<p>希望以上代码能解决您的问题</p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 如何在 UIWebView 中跳转 pdf 页面?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7416807/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7416807/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 如何在 UIWebView 中跳转 pdf 页面?