我想查看本地 PDF(在我的 iPhone 应用程序中)并能够跳转到特定页面.似乎 UIWebView 是要走的路,但是,我找不到任何关于跳转到特定页面的信息.这是不可能的吗?还有其他我可以使用的技术吗?
I want to view a local PDF (in my iPhone app) and be able to jump to a specific page. Seems like the UIWebView is the way to go, however, I can't find any information on jumping to specific pages. Is this impossible? Are there any other techniques I can use?
谢谢,豪伊
你可以尝试使用Javascript.请参阅 此链接了解更多详情.您需要使用类似于 @"window.scrollTo(0, x);"
的内容,其中 x 是您通过使用 WebView 确定的某个值.
You can try using Javascript. See this link for more details. You'll want to use something along the lines of @"window.scrollTo(0, x);"
, where x is some value you determined by playing around with the WebView.
这篇关于iPhone UIWebView PDF 页面跳转的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!