iPhone UIWebView PDF Page Jump(iPhone UIWebView PDF 页面跳转)
问题描述
我想查看本地 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 页面跳转的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iPhone UIWebView PDF 页面跳转
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01