在UIWebview ios中显示特定的pdf页面
问题描述:
我目前正在研究一个项目,我需要ios显示一个pdf文件. 但是我想选择要显示的页面. 例如,请参见UIWebView中的第10页(共37页). 我还没有找到一种方法来完全分隔pfd的页面.
I am currently working on a project and I have ios need to display a pdf file. However i want choose the page to display. For example see page 10 of 37 in a UIWebView. I have not found a way to cleanly separate the pages of a pfd.
感谢您的帮助.
答
您可以使用webview的 setContentOffset 属性显示该页面,
You can use setContentOffset property of webview to show that page,
[[webView scrollView] setContentOffset:CGPointMake(0,10*pageheight) animated:YES];
其中pageheight =您的页面高度,10是您的页面编号,
where pageheight=your page height, 10 is your page no,